Program to print numeric pyramid - 100 Most Important C# Programs

100 Most Important C# Programs

16. Program to print numeric pyramid

Code:

# include <stdio.h>

# include <conio.h>

main()

{

int i,j;

clrscr( );

for(i=1;i<=5;i++)

{

for(j=1;j<=i;j++)

printf(“%d”,j);

printf(“\n”);

}

getch();

}