Why can\'t I put a function after main, visual studio cannot build the program. Is this a C++ quirk or a Visual Studio quirk?
eg.
int main() { myF
You have to declare the function before.
void myFunction(); int main() { myFunction() } myFunction(){}