Question #39: The code below is legal. True or false? 77% on 983 times asked
#include <iostream> const char* Foo() { return "Hello World"; } int main() { const char* str = Foo(); std::cout << str << std::endl; return 0; }