fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("3の文字コードは10進数=%d, 16進数=%x\n",'3','3');
  5. printf("Eの文字コードは10進数=%d, 16進数=%x\n",'E','E');
  6. printf("?の文字コードは10進数=%d, 16進数=%x\n",'?','?');
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
3の文字コードは10進数=51, 16進数=33
Eの文字コードは10進数=69, 16進数=45
?の文字コードは10進数=63, 16進数=3f