#include <stdio.h>typedefstruct{intb,p;}A;voidf(Ac)/注意:c是结构变量名/
int j;cb+=1;cp+=2;main()int i;Aa={1,2}; f(a);printf("%d,%d\n",a.b,a.p);程序运行后的输出结果是()
2,4