Say I\'ve got a class like this:
class Test { int x; SomeClass s; }
And I instantiate it like this:
Test* t = new Test;
Since you've used new, it's all on the heap, stored [more or less] contiguously in t's memory area.
new
t