fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. signed int x = 50000;
  5.  
  6. printf(" x = %d\n", x);
  7. printf("x*x = %d\n", x*x);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
  x = 50000
x*x = -1794967296