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
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What are virtual constructors/destructors?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What are proxy objects?
Why c++ is faster than java?
Explain virtual functions in C++.
What is the role of copy constructor in copying of thrown objects?
Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
Why use of template is better than a base class?
What is const pointer and const reference?
How many types of comments are there in c++?
Does dev c++ support c++ 11?