Find the output of following program?


			  		

Loading

โœช Choose the correct option.

Find the output of following program?

#include 
class Test
{
public:
void fun();
};
static void Test::fun()
{
std::cout<<"fun() is static ";
}
int main()
{
Test::fun();
return 0;
}

A. compiler error
B. fun() is static
C. Empty screen
D. None of the above