If I have a struct like this:
struct S { ANY_TYPE a; ANY_TYPE b; ANY_TYPE c; } s;
Can I safely assume that the following assump
In C++ you can be certain that these assumptions will hold. In struct like this, the compiler is not allowed to change the order of the members.