Computer Science, asked by rafay7330, 1 year ago

Draw the pattern in c language
12345
1234
123
12
1

Answers

Answered by bapu34
0

Answer:

12345

2345

345

45

5

next answer

54321

5432

543

54

5

next answer

54321

4321

321

21

1

this is the answer attached above please mark me brainliest

Answered by shishirsaroj62406
0

Answer:

void main()

{

   int i, j;

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

   {

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

       {

           printf("%d",j);

       }

       printf("\n");

   }

}

Explanation:

mark as a brainlist

Similar questions