What are the benefits of oop in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is dangling pointers?and what is memory leak?
What are friend classes?
How is data hiding achieved in c++?
What is a loop? What are different types of loops in c++?
When there is a global variable and local variable with the same name, how will you access the global variable?
What is a flag in c++?
WHO DEVELOPED C++?
Differentiate between declaration and definition.
What are the differences between a struct in C and in C++?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is a try block?
What do you mean by const correctness?