[ create a new paste ] login | about

Link: http://codepad.org/HJjugOlB    [ raw code | output | fork ]

C, pasted on Sep 23:
1
2
3
4
5
int main() {
   unsigned int x = atoi("4294967296");
   printf("%u %u\n", sizeof(unsigned int), x);
   return 0;
}


Output:
1
4 2147483647


Create a new paste based on this one


Comments: