fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. /* int x=65;
  5.   printf("%d\n",x);
  6.   char ch= (char)x;
  7.   printf("%c\n",ch);*/
  8. char ch= 'A';
  9. printf("%c\n",ch);
  10. int x=(int)ch;
  11. printf("%d\n",x);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5316KB
stdin
stdout
A
65