Untitled
struct foo { int x; int y; }; void bar(struct foo f) { } int main() { struct foo f = { .x = 1, .y = 2, }; bar(f); return 0; }
struct foo { int x; int y; }; void bar(struct foo f) { } int main() { struct foo f = { .x = 1, .y = 2, }; bar(f); return 0; }