If n=5
then the program will give the below output
1
2 6
3 7 10
4 8 11 13
5 9 12 14 15
1 Replies
#include<stdio.h>
int main()
{
int i,j,k;
for(i=1;i<=5;i++)
k = i;
for(j=1;j<=i;j++)
printf("%d ", k);
k += 5-j;
}
printf("\n");
return 0;
Techiio is on the journey to build an ocean of technical knowledge, scouring the emerging stars in process and proffering them to the corporate world.
Follow us on:
Quick Links
Policies
Subscribe to get latest updates