#include int main(void) { int x; int y; x = (y = 23); // sets y, then sets x printf("%i %i\n", x, y); //(x = 42) = 371; // error: expression is not assignable return 0; }