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