assignments, STATEMENT_EXPRESSIONs
This commit is contained in:
parent
3ff998da40
commit
8b68a433ff
3 changed files with 215 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue