Computer Science, asked by mangeshsingh276205, 7 months ago

write a program to generate 1234 123 12 1

Answers

Answered by aduraj30112007
0

Answer:

12345 1234 123 12 1

August 6, 2016

12345

1234

123

12

1

#include <stdio.h>

int main()

{

int i, j;

for(i=5;i>=1;i–)

{

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

{

printf(“%d”,j);

}

printf(“\n”);

}

return 0;

}

12345

1234

123

12

1

#include <stdio.h>

int main()

{

int i, j;

for(i=5;i>=1;i–)

{

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

{

printf(“%d”,j);

}

printf(“\n”);

}

return 0;

}

Similar questions