Generally variables are stored in heap memory. When he
variables are created in stack?
Answer Posted / rahul
I am not sure about this answer but when you pass any
argument to any recursive or non-recursive function.
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are disadvantages of pointers?
Which sort does c++ use?
Should you pass exceptions by value or by reference?
what are the iterator and generic algorithms.
What is abstraction c++?
Array base access faster or pointer base access is faster?
Why do we use double in c++?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
What is the syntax for a for loop?
What do you mean by friend class & friend function in c++?
What is the difference between a "copy constructor" and an "assignment operator" in C++?
Where and why do I have to put the "template" and "typename" keywords?
Can you pass a vector to a function?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What does it mean to declare a destructor as static?