Explain what is polymorphism in c++?
No Answer is Posted For this Question
Be the First to Post Answer
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
Mention the purpose of istream class?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
What is an orthogonal base class in c++?
Why c++ is faster than java?
What is the handle class?
Why is c++ awesome?
Is set c++?
What is the C-style character string?
What is the difference between structure and class?
What is c++ coding?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;