#include <iostream> struct B { void PrintIt() { std::cout << "Does it work?" << std::endl; } }; int main() { B *obj = NULL; obj->PrintIt(); return 0; }
->
NULL
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment