96. C Program to Print Number Triangle.
How does this program work?
- This Program is used to print the number triangle from the given pattern.
Here is the code
#include <stdio.h>
int main(void)
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=1;j< i;j++)
{
printf(" ");
}
for(j=i;j<=5;j++)
{
printf("%d",j);
}
printf("\n");
}
return 0;
}