A-A+ 设 struct st {int i; int j; }*P; main() { struc 2022-08-06 23:14:49 问答库 阅读 181 次 问题详情 设 struct st {int i; int j; }*P; main() { struct st m[]={{10,1},{20,2},{30,3}}; p=m; printf ("%dn",(*++p).j); } 则程序的输出结果是()A.1B.2C.3D.10请帮忙给出正确答案和分析,谢谢! 参考答案 正确答案:B