fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("1の文字コードは10進数=%d, 16進数=%x\n",'9','9');
  5. printf("Aの文字コードは10進数=%d, 16進数=%x\n",'H','H');
  6. printf("スペースの文字コードは10進数=%d, 16進数=%x\n",' ',' ');
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
1の文字コードは10進数=57, 16進数=39
Aの文字コードは10進数=72, 16進数=48
スペースの文字コードは10進数=32, 16進数=20