fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i,j;
  5. for(i='A'; i<='E'; i++)
  6. {
  7. for(j='A'; j<=i; j++);
  8. {
  9. printf("%c", j);
  10. }
  11. printf("\n");
  12. }
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
B
C
D
E
F