How do you initialize a class member,
class x {
const int i;
};
Answer Posted / pappu
class abc
{
int a=4,b=3;
virtual mul(int int)=0;
}
Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What is extern c++?
What apps are written in c++?
Which software is used for c++ programming?
Is swift better than c++?
How should a contructor handle a failure?
Explain deep copy?
What is switch case in c++ syntax?
What is c++ mutable?
Where and why do I have to put the "template" and "typename" keywords?
What is the purpose of extern storage specifier?
Are vectors passed by reference c++?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What are virtual constructors/destructors?
What is the full name of logo?
State the difference between pre and post increment/decrement operations.