I was looking at some code a friend sent me, and he said: "It compiles, but doesn't work". I saw that he used the functions without the parentheses, something like this:
void foo(){
cout<< "Hello world\n";
}
int main(){
foo; //function without parentheses
return 0;
}
The first I said was "use parentheses, you have to". And then I tested that code - it does compile, but when executed doesn't work (no "Hello world" shown).
So, why does it compile (no warning at all from the compiler GCC 4.7), but doesn't work?
foois treated as it is, a function pointer. The linefoo;is just a line without effect. If you turn your warnings to the maximum you should get a warning about a statement without effect. – RedX Jun 18 '12 at 11:59#include <iostream>and any namespace stuff too in order to make your sample complete) – Flexo♦ Jun 18 '12 at 12:02