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