Home »
        C programs
    
    C program for 'Half Pyramid' Pattern
    
    
    
    
    
        In this C program, we are going to learn how to print a half pyramid. Here, we are reading total number of rows and printing the half pyramid accordingly.
        Submitted by Shamikh Faraz, on February 14, 2018
    
    In this program we will learn, how we can print half pyramid using ‘asterisks’ and ‘loops’. 
C program
#include <stdio.h>
int main()
{
	int a, b, rows;
	printf("Enter number of rows");
	scanf("%d",&rows);
	for(a=1; a<=rows; a++)
	{
		for(b=1; b<=a; b++)
		{
			printf("* ");
		}
		printf("\n");
	}
	return 0;
}
Output
 
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement