Find the output of following program?


			  		

Loading

โœช Choose the correct option.

Find the output of following program?

#include
using namespace std;

class Base
{
public:
virtual void show() = 0;
};

int main(void)
{
Base b;
Base *bp;
return 0;
}

A. There is compiler error in line "Base b;"
B. There are compiler errors in lines "Base b;" and "Base bp;"
C. There is compiler error in line "Base bp;"
D. No compiler Error