2022-02-12 12:03:00 -05:00
|
|
|
static char x = -2;
|
2022-02-12 14:12:01 -05:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int x;
|
|
|
|
char y;
|
2022-02-12 14:31:14 -05:00
|
|
|
long z;
|
|
|
|
long q;
|
2022-02-12 14:12:01 -05:00
|
|
|
} Structure;
|
|
|
|
|
2022-02-12 16:08:58 -05:00
|
|
|
Structure a = {1,2,3,-4};
|
2022-02-12 14:12:01 -05:00
|
|
|
|
2022-02-11 13:52:19 -05:00
|
|
|
long main(int argc, char **argv) {
|
2022-02-12 16:08:58 -05:00
|
|
|
Structure a = {1,2,3,4};
|
|
|
|
int x = 100;
|
|
|
|
a;a;a;a;a;
|
|
|
|
x = x + x, x = x + 2;
|
|
|
|
return x;
|
2022-02-09 22:44:27 -05:00
|
|
|
}
|