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