Question #32: Will "Hello World" be printed by the program below? 49% on 1846 times asked
struct Foo { int x; int y; }; int main(int argc, char** argv) { Foo f; if ( &f.x < &f.y ) { std::cout << "Hello World" << std;:endl; } return 0; }