C Program to print pyramid of star in C

C Program to print pyramid of star in C | Pyramid of star in C | Pyramid of stars c assignment.




#include
#include

int main(int argc, char *argv[])
{
int r,c;

for(r=0;r<=3;r++)
{
for(c=2;c>=r;c--)
{
printf(" ");
}
for(c=0;c<=r;c++)
{
printf(" *");
}
printf("\n");
}
system("PAUSE");
return 0;
}




No comments:

Post a Comment