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