Can I create my own functions in c++?
No Answer is Posted For this Question
Be the First to Post Answer
When is the copy constructor called?
Explain virtual class?
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
What is the use of endl?
What is math h in c++?
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Why is it difficult to store linked list in an array?
What is Namespace?
What is the difference between global int and static int declaration?
What are the types of container classes?
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.
What is buffer and example?