What is the meaning of string in c++?
No Answer is Posted For this Question
Be the First to Post Answer
what is Member Functions in Classes?
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.
What is an incomplete type in c++?
When does a name clash occur?
What is #include iostream in c++?
What is problem with overriding functions?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
What are the advantages of pointers?
Differentiate between an inspector and a mutator ?
Define basic type of variable used for a different condition in C++?
Explain how an exception handler is defined and invoked in a Program.