fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("1の文字コードは10進数=%d, 16進数=%x\n",'NUL','NUL');
  5. printf("Aの文字コードは10進数=%d, 16進数=%x\n",'x','x');
  6. printf("スペースの文字コードは10進数=%d, 16進数=%x\n",'DEL','DEL');
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1の文字コードは10進数=5133644, 16進数=4e554c
Aの文字コードは10進数=120, 16進数=78
スペースの文字コードは10進数=4474188, 16進数=44454c