struct A { int a; int b; }; int i = 3; int a = 23; A c; void wusi() { int b = 0; test(i); test(c.a); test(c.b); i = 5; } void main() { c.a = 8; c.b = 10; int b = 0; test(i); wusi(); test(i); }