fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i = (1 << 24) + 3;
  5.  
  6. printf("%d\n", (int)(i * 0.6));
  7. printf("%d\n", (int)(i * 0.6f));
  8. return 0;
  9. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
10066331
10066332