fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. int g = 'a' + 10;
  7.  
  8. printf("%d", g);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
107