C Program to Print patterns of Stars | Star Patterns Printing in C

C Program to Print patterns of Stars | Star Patterns Printing in C





#include 
#include 
void main()
{
int i=0,no=0,j=0;
clrscr();
printf("\n Please Enter The Number);
scanf("%d",&no);
for(i=0;i<=no;i++)
{
printf C\n") ; 
for(j=0;j<=no;j++)
}
if(i==j)
printf("*");
else
printf(" ");
}
}
getch();
}

No comments:

Post a Comment