[ create a new paste ] login | about

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

C++, pasted on Jun 9:
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>
int main() {

int f();
std::cout << f();

return 0;
}

int f() {
return 1;
}


Output:
1
1


Create a new paste based on this one


Comments: