Can anyone please explain what is going in this C++ code. It compiles and executes fine on Linux.
#include <iostream>
using namespace std;
int main = ( cout << "Hello world!\n", 195 );
|
Can anyone please explain what is going in this C++ code. It compiles and executes fine on Linux.
|
|||||||||||||||||||
|
|
The number "195" is the code of RET instruction on x86. The C++ compiler (gcc in my case) is unable to recognize that "main" wasn't declared as a function. The compiler only sees that there is the "main" symbol, and presumes that it refers to a function. The C++ code
is initializing a variable at file-scope. This initialization code is executed before the C/C++ environment calls main(), but after it initializes the "cout" variable. The initialization prints "Hello, world!\n", and sets the value of variable "main" to 195. After all initialization is done, the C/C++ environment makes a call to "main". The program returns immediately from this call because we put a RET instruction (code 195) at the address of "main". Sample GDB output:
|
|||||||||||||||||||
|
|
It's not a valid C++ program. In fact, it crashes for me on Mac OSX after printing "Hello World". Disassembly shows
Why does it print "Hello World"? The reason you see "Hello World" printed out is because it's run during static initialization of Other answers indicate this is a valid Why can't a C++ compiler tell that main() isn't a function and stop with linker error?
|
|||||||||||||||||||
|
|
It's not a legal program, but I think the standard is a little ambiguous as to whether a diagnostic is required or it is undefined behavior. (From a quality of implementation point of view, I'd expect a diagnostic.) |
|||||||
|
|
It will set the global variable |
|||||
|