fork download
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main(void) {
  5. unsigned n = UINT_MAX; // maximum de unsigned
  6. printf("%u\n", n);
  7. n++;
  8. printf("%u\n", n);
  9. // your code goes here
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
4294967295
0