#include<stdio.h> #include<conio.h> void main() { int i,j; clrscr(); for(i=1;i<=6;i++) { for(j=97;j<=102;j++) printf("%3c",j); printf("\n"); } getch(); } |
___________________________________________________________________________
Posted by computersadda on 01:00: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=1;i<=6;i++) { for(j=97;j<=102;j++) printf("%3c",j); printf("\n"); } getch(); } |
Post a Comment