Pyramid Problem No. 7

 Q.7 Write a program to generate a following numbers structure:

          54321
          54321
          54321
          54321
          54321

Solving in C:
                
           #include <stdio.h>

int main()

{

    int row,col,count;

    for(row=1; row<=5; row++){

        for(col=1,count=5; col<=5; col++,count--)  printf("%d",count);

        printf("\n");

    }

    return 0;

}

Comments

Popular posts from this blog

Pyramid Problem No. 90

Pyramid Problem No. 74

Pyramid Problem No. 85