2021-02-22 17:43:06 +00:00
|
|
|
struct a {
|
|
|
|
int x,
|
|
|
|
int y
|
|
|
|
};
|
|
|
|
|
2022-03-03 00:05:10 +00:00
|
|
|
int :: printf(char* fmt);
|
2021-07-04 23:07:55 +00:00
|
|
|
|
|
|
|
struct a str;
|
|
|
|
|
2022-03-03 00:05:10 +00:00
|
|
|
int :: main() {
|
2021-07-04 23:07:55 +00:00
|
|
|
str.y = 55;
|
|
|
|
printf("%d\n", str.y);
|
|
|
|
return (0);
|
|
|
|
}
|