Is std :: string immutable?
No Answer is Posted For this Question
Be the First to Post Answer
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What is using namespace std in c++?
What is virtual destructor? What is its use?
Why is swift so fast?
What is virtual table?
What are raw sockets, where they are efficient?
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.
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
What is the function of the keyword ‘volatile’ in C++?
Should a constructor be public or private?
What is anonymous object in c++?
What is a pointer with example?