Star Pattern 1 – Half pyramid pattern in C programming language using stars
Half pyramid pattern in C programming language using stars In this program, we will see the Half pyramid pattern in C programming or the half triangle pattern. * ** *** **** ***** The C program for above half pyramid pattern is as follows: #include<stdio.h> int main() { int i,j, no_rows; printf(“Enter number of rows for … Read more