1.

Output of following C++ program?#include <iostream>class Test{public:void fun();};static void Test::fun(){std::cout<<"fun() is static\n";}int main(){Test::fun();return 0;}Contributed by Pravasi Meet(A) fun() is static(B) Empty Screen(C) Compiler Error

Answer» None


Discussion

No Comment Found