What is c++ vb?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between equal to (==) and assignment operator (=)?
How do you declare A pointer to a function which receives nothing and returns nothing
Explain the isa and hasa class relationships. How would you implement each?
What do you mean by volatile and mutable keywords used in c++?
why is iostream::eof inside a loop condition considered wrong?
What do you know about near, far and huge pointer?
What is input operator in c++?
Write a program to add three numbers in C++ utilizing classes.
How many types of classes are there in c++?
What is OOPs
why is c++ called oops? Explain
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.