fork(3) download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. void myprint(unsigned long a)
  6. {
  7. printf("Input is %lx\n", a);
  8. }
  9. int main()
  10. {
  11. myprint(1 << 31);
  12. myprint(0x80000000);
  13. }
  14.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Input is 80000000
Input is 80000000