fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. for(int i=65;i<=90;i++){
  5.  
  6. printf("%d",i);
  7. char ch= (char)i;
  8. printf("%c\n",ch);
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5316KB
stdin
stdout
65A
66B
67C
68D
69E
70F
71G
72H
73I
74J
75K
76L
77M
78N
79O
80P
81Q
82R
83S
84T
85U
86V
87W
88X
89Y
90Z