Quantcast
Channel: Engineers Press » logic
Viewing all articles
Browse latest Browse all 9

C language: Program for creating pyramid of star pattern

$
0
0

Another basic task that will let you learn the flow of the computer programming languages using the for loop is creating patterns in programming using characters like ” * ” . If you are just starting with the computer programming and want to find out the logic behind creating the star patterns through programming, Then this program is for you

Here’s the code 


#include <stdio.h>

int main()
{
 int row, c, n, temp;

 printf("Enter the number of rows in pyramid of stars you wish to see ");
 scanf("%d",&n);

 temp = n;

 for ( row = 1 ; row <= n ; row++ )
 {
 for ( c = 1 ; c < temp ; c++ )
 printf(" ");

 temp--;

 for ( c = 1 ; c <= 2*row - 1 ; c++ )
 printf("*");

 printf("\n");
 }

 return 0;
}



Viewing all articles
Browse latest Browse all 9

Trending Articles