fork download
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main(void) {
  5. size_t a = -1;
  6. printf("%ld\n", a);
  7. printf("%lu\n", a);
  8. printf("%lu\n", ULONG_MAX);
  9. printf("%lu\n", ULONG_MAX + 1);
  10. return 0;
  11. }
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
-1
18446744073709551615
18446744073709551615
0