fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a = 'a';
  5. printf("%c\n", a);
  6. printf("%d\n", a);
  7. }
  8.  
  9. //https://pt.stackoverflow.com/q/178456/101
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
a
97