Square Star pattern in C

/* Square Star pattern*/ 

#include<stdio.h>

int main()

{

int i,j;

for(i=1; i<=5; i++)

for(j=1; j<=5; j++)

printf("*"); // put any character

}

printf("\n");

}

return 0;

Output: 










Comments

Popular posts from this blog

Basic Computer 🖥️💻 Organisation

Introduction of computer 🖥️🖥️🖱️