struct a { int x, int y }; int printf(char* fmt); struct a str; int main() { str.y = 55; printf("%d\n", str.y); return (0); }