What is atoi in c++?
No Answer is Posted For this Question
Be the First to Post Answer
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 :: operator in c++?
Why c++ is better than c language?
Is overriding possible in c++?
What are C++ inline functions?
What is the use of endl?
What are 2 ways of exporting a function from a dll?
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
Are strings immutable in c++?
what is upcasting in C++?
What is the difference between = and == in C?
20 Answers Christ University, Intel,
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];