assignments, STATEMENT_EXPRESSIONs

This commit is contained in:
pommicket 2022-02-12 16:08:58 -05:00
parent 3ff998da40
commit 8b68a433ff
3 changed files with 215 additions and 13 deletions

View file

@ -7,9 +7,12 @@ typedef struct {
long q;
} Structure;
Structure a = {1,2,3,-4};
long main(int argc, char **argv) {
Structure s[] = {3, 5, -88,6,9,12,88,33};
Structure t = s[0];
return t.z;
Structure a = {1,2,3,4};
int x = 100;
a;a;a;a;a;
x = x + x, x = x + 2;
return x;
}