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