top of page
Writer's pictureanitadevkar

Program to print Triangle

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:

*****

****

***

**

*


7 views0 comments

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