What is the difference between structure and class?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a shallow copy and a deep copy?
what you know about c++?
If there are two catch statements, one for base and one for derived, which should come first?
What is a node class in c++?
What kind of jobs can I get with c++?
How do you invoke a base member function from a derived class in which you’ve overridden that function?
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
Write about the use of the virtual destructor?
How would you obtain segment and offset addresses from a far address of a memory location?
what is Loop function? What are different types of Loops?
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 == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What is basic if statement syntax?