Which logical operator is used for the 'AND' operation?
Which operator is used to represent the next element in an iterator?
Which of the following operators is used for extraction or getting values from a console or file?
Which C++ function is used to write a single character to the console?
What is the declaration of a structure called?
The______ function returns the number of characters that are present before the terminating null character.
What will happen when we use void in argument passing?
What are Iterators?
What is a Conversion Constructor?
What will be the output of the following code?
class base
{
public:
base()
{
cout<<"BCon";
}
~base()
{
cout<<"BDest ";
}
};
class derived: public base
{
public:
derived()
{ cout<<"DCon ";
}
~derived()
{ cout<<"DDest ";
}
};
int main()
{
derived object;
return 0;
}