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