#include
main()
{
int n, c, k;
clrscr();
printf("Enter number of rows::");
scanf("%d",&n);
for ( c = 1 ; c <= n ; c++ )
{
for( k = 1 ; k <= c ; k++ )
{
printf("%d ", k);
}
printf("\n");
}
getch();
return 0;
}
---------------------------------------
output:-
Enter number of rows::6
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
1 2 3 4 5 6
No comments:
Post a Comment