fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. int a,b;
  6. a = sizeof(char);
  7. b = sizeof(float);
  8. printf("int型のサイズ=%d\n",a);
  9. printf("double型のサイズ=%d\n",b);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
int型のサイズ=1
double型のサイズ=4