Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

18 Jan 2013

Number Pyramid 7

Q) Write a program to generate a following number structure:

54321
54321
54321
54321
54321

Sol )

#include<stdio.h>
#include<conio.h>
int main( )
{
 int num, r, c ;

printf("Enter the loop repeat number(rows):: ") ;

scanf("%d",&num);
for(r=1; num>=r; r++)
    {
          for(c=5; c>=1; c--)
                 printf("%d",c) ;
          printf("\n") ;
     }

return 0 ;

}

No comments:

Post a Comment