top of page
Search

Program to print Triangle

  • Writer: anitadevkar
    anitadevkar
  • Mar 13, 2022
  • 1 min read

Program:

#include <stdio.h>

int main()

{

int i,j;

for(i=5;i>0;i--) //for rows

{

for(j=0;j<i;j++) //for columns j loop will iterate till value of i

{

printf("*");

}

printf("\n");

}

return 0;

}

Output:

*****

****

***

**

*


 
 
 

Recent Posts

See All
C Program for pyramid of number

Program: #include <stdio.h> int main() { int i,j; for(i=5;i>0;i--) //for rows { for(j=1;j<=i;j++) //for columns j loop will iterate...

 
 
 
Program to print triangle

In this program you will see working of nested for loop. Program: #include <stdio.h> int main() { int i,j; for(i=0;i<5;i++) //for...

 
 
 

Comments


bottom of page