What are the four partitions in which c++ compiler divides the ram?
No Answer is Posted For this Question
Be the First to Post Answer
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
What is command line arguments in C++? What are its uses? Where we have to use this?
What is a class template in c++?
Shall we use 'free' to free memory assigned by new, What are the further consequences??
When can I use a forward declaration?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is a storage class in C++
What is the best c++ compiler?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
What is null pointer and void pointer?
What is difference between shallow copy and deep copy? Which is default?