What is the definition of memory in C++? thank you.

Recommended Answers

All 2 Replies

Can you be much more specific?

Memory in C++ fall into 3 category :

static memory : Memory is occupied until the end of the program
heap memory: Memory is occupied until freed
Stack memory : Memory is occupied until the end of the block, in which it was declared.

Thats a very simple description. If you want more details, then maybe you can give us
more detailed question.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.