In which memory a class gets stored(in heap /in stack)?
And why??
Answers were Sorted based on User's Feedback
The stack is a place in the computer memory where all the variables that are declared and initialized before runtime are stored. The heap is the section of computer memory where all the variables created or initialized at runtime are stored.
Hence,classes will be stored in heap memory.
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / ravi.g
Usually class will get stored when the object/s are created.
Class will get sored in stack segment when the object is
created inside the functions.
When objects are created globally they will get stored in
the data segment.
Is This Answer Correct ? | 2 Yes | 3 No |
What problem does the namespace feature solve?
What are iterators in c++?
Which should be more useful: the protected and public virtuals?
Describe Trees using C++ with an example.
what is data encapsulation in C++?
What are the rules about using an underscore in a c++ identifier?
Is the declaration of a class its interface or its implementation?
What is flush programming?
What is c++ course?
What are static type checking?
What is endianness?
How many types of modularization are there in c++?