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