#include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=97;i<=102;i++) { for(j=97;j<=i;j++) printf("%3c",j); printf("\n"); } getch(); } |
___________________________________________________________________________
Posted by computersadda on 23:49:00 in Nested for Loop C-Programs (28 formats) | Comments : 0
#include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=97;i<=102;i++) { for(j=97;j<=i;j++) printf("%3c",j); printf("\n"); } getch(); } |
Post a Comment