square matrix
#include<stdio.h>
int main(){
int rows = 6;
for(int i = 1; i<=rows; i++){
for(int j = 1; j<rows; j++)
printf("*");
}
printf("\n");
return 0;
}
#include<stdio.h>
int main(){
int rows = 6;
for(int i = 1; i<=rows; i++){
for(int j = 1; j<rows; j++)
printf("*");
}
printf("\n");
return 0;
}