Explain the difference between struct and class in terms of access modifier.
No Answer is Posted For this Question
Be the First to Post Answer
Explain what happens when a pointer is deleted twice?
What is unary operator? List out the different operators involved in the unary operator.
What is the use of class in c++?
What is c++ try block?
Can you overload the operator+ for short integers?
What is the meaning of string in c++?
What are vectors used for in c++?
How do you invoke a base member function from a derived class in which you have not overridden that function?
Why null pointer is used?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
Explain container class.
What is a dynamic binding in c++?