What is doubly linked list in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the syntax of single inheritance in C++?
Will the following program execute?
Is set c++?
What is the purpose of the noexcept keyword?
What is a driver program?
What can I safely assume about the initial values of variables which are not explicitly initialized?
What is the outcome of cout< a) 16 b) 17 c) 16.5
What is name hiding in c++?
What is a container class? What are the types of container classes in c++?
What is difference between initialization and assignment?
12 Answers HCL, HP, Infosys,
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
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.