@@ -3,8 +3,9 @@
int main(int argc, char** argv) {
int i = 10;
int x = i++ + (i++ + 1);
int i = 1;
char a[4] = { 1, 2, 3, 4 };
int x = a[i++] + a[i++];
// aci, i == 12 ; x == 21
return 0;
}
The note is not visible to the blocked user.