What are the various compound assignment operators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Should the member functions which are made public in the base class be hidden?
What is the history of c++?
Define pure virtual function?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What is implicit conversion/coercion in c++?
Explain deep copy?
What is the best ide for c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Define virtual constructor.
Evaluate !(1&&1||1&&0) a) Error b) False c) True
How many ways can a variable be initialized into in C++?
Why do we need constructors in c++?