C++
Programming and Technical
class base
{
public:
int bval;
base(){ bval=0;}
};
class deri:public base
{
public:
int dval;
deri(){ dval=1;}
};
void SomeFunc(base *arr,int size)
{
for(int i=0; i
Read Solution (Total 0)
C++ Other Question
Which is the parameter that is added to every non-static member function when it is called?
class base
{
public:
void baseFun(){ cout