Write in Order with For Loop or While Loop



Example

#include
#include
void main() {
   int i,j,a=0,b=1,n;
   clrscr();
   printf("****************OUTPUT*****************

");    printf("enter the value of n : ");    scanf("%d",&n);    printf("
the required order is:

" );    for(i=1;i<=n;i++) {       if(i==1)       printf("%d. E",i);       else {          printf("%d. ",i);          for(j=1;j<=i-1;j++)          printf("%d",a);          for(j=1;j<=i-1;j++)          printf("%d",b);       }       printf("
");    }    getch(); }
Updated on: 2020-06-20T15:34:17+05:30

223 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements