Name: Anonymous 2016-06-19 12:21
What will this program output?
Good luck, you'll need it!
The answer is absolutely nothing because c my_c(); is a fucking function declaration.
Good luck, you'll need it!
#include <iostream>
using namespace std;
int main() {
class c {
public:
c() {
void f();
f();
}
};
c my_c();
}
void f() {
cout << "VALID C++" << endl;
}
The answer is absolutely nothing because c my_c(); is a fucking function declaration.