comma expr

This commit is contained in:
Yaossg 2024-11-30 11:19:13 +08:00
parent 50969c6bb9
commit 8114d04fb9
3 changed files with 22 additions and 8 deletions

View file

@ -12,6 +12,6 @@ int f1() {
int main() {
int a[15];
p = a;
for (int i = 0; i < 15; ++i) a[i] = i;
for (int i = 0; i < 15; a[i] = i, ++i);
return f1();
}