So basically this is a stack allocation:
char inStack[10];
// and
MyStruct cl;
And this should be allocated in the heap:
char* inHeap = new char[10];
// and
MyClass cl = new MyClass();
----------------
What if MyClass contains a char test[10] variable? Does this: MyClass cl = new MyClass() means that the 10byte long content of MyClass::test is allocated in the Heap instead of Stack