Friday, 27 September 2013

C++ Function declare in function

C++ Function declare in function

Why does is it compile?
int main() {
void f();
}
What is f? Is it function or variable... How can I use f?

No comments:

Post a Comment