Tag: Pattern Printing: 5*5 STARS in C

30
Dec
2015

Pattern Printing: 5*5 STARS in C

Code: #include<stdio.h> int main() { int i,j,rows; printf(“Enter the number of rows: “); scanf(“%d”,&rows); for(i=1; i<=rows; i++)…