If there are two catch statements, one for base and one for derived, which should come first?
No Answer is Posted For this Question
Be the First to Post Answer
Implement strcmp
What c++ library is string in?
What is the real purpose of class – to export data?
Explain function overloading
What is the first name of c++?
What is data type in c++?
Explain the concept of inheritance in C++.
How do you declare a set in c++?
What is meant by iomanip in c++?
What is capacity in vector in c++?
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.
Tell me difference between constant pointer and pointer to a constant.