fork download
  1. #include<stdio.h>
  2. int main(){
  3. int i,j;
  4. for(i=4;i>=1;i--){
  5. for(j=i;j>=1;j--){
  6. printf("%c",j+65);
  7. }
  8. printf("\n");
  9. }
  10.  
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
EDCB
DCB
CB
B