Let's say I have class A which has a map data member. I allocated object a (of class A) on the heap. Where the map memory is stored? On the stack? I'm asking since the map memory can be changed and the memory couldn't be allocated when I allocated space for the object of A class
Thanks