I have a class, for example:
class Vector
{
float x, y, z
};
Vector v;
And a pointer:
float *c = &v.x;
Will it be works correctly, when I'll use increment operator for access to y and z members?
P.S. Bad style to do by this way, but it's sport interest.