[ create a new paste ] login | about

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

C, pasted on Feb 2:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

long foo(void) {
   return -1;
}

int main(void) {
   printf("return value = %lu\n", foo());
   return 0;
}


Output:
1
return value = 4294967295


Create a new paste based on this one


Comments: