fork download
  1. #include <stdio.h>
  2.  
  3. main( )
  4. {
  5. char a = 'M';
  6.  
  7. printf("%d\n", a);
  8. printf("%c\n", a);
  9. }
  10.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
77
M