โช 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;
}