C Program to Print Square Star Pattern

In this tutorial, i am going to show you how to print square star pattern using for loop in c program.

C Program to Print Square Star Pattern

/* C program to Print Square Star Pattern */
#include<stdio.h>
 
int main()
{
    int i, j, Side;
     
    printf("Please Enter Any Side of a Square :- ");
    scanf("%d", &Side);
     
    for(i = 0; i < Side; i++)
    {
        for(j = 0; j < Side; j++)
	{
           printf("*");
        }
        printf("\n");
    }
    return 0;
}

The result of the above c program; is as follows:

Please Enter Any Side of a Square :- 8
********
********
********
********
********
********
********
********

More C Programming Tutorials

Leave a Comment