fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. unsigned test = -100;
  6. printf("Value of test is: %u\n", test);
  7. printf("Value of test + test is: %u\n", test + test);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Value of test is: 4294967196
Value of test + test is: 4294967096