Tagged Questions

1
vote
3answers
184 views

Is the aliasing rule symmetric?

I had a discussion with someone on IRC and this question turned up. We are allowed by the Standard to change an object of type int by a char lvalue. int a; char *b = (char*) &a; *b = 0; Would ...