what are Operators and explain with an example?
No Answer is Posted For this Question
Be the First to Post Answer
What are different types of loops 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.
Is dev c++ free?
What is using namespace std in cpp?
What are the advantages of early binding?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What do you mean by pure virtual functions in C++? Give an example?
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
write the prime no program in c++?
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
What is the limitation of cin while taking input for character array?
What do you mean by late binding?