pod-type

What are POD types in C++?

I've been following SO for a bit now, and I've come across this term POD-type a few times... what does it mean? ...

How are objects stored in memory in C++?

How are objects stored in memory in C++? For a regular class such as class Object { public: int i1; int i2; char i3; int i4; private: }; Using a pointer of Object as an array can be used to access i1 as follows? ((Object*)&myObject)[0] === i1? Other questions on SO seem to suggest that casting a struct to ...