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