通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
若有以下定义和语句:
struct st { int n; struct st*next; }st;ruct st a[3] = {5,&a[0], 6,&a[1],7,&a[2]}, *p; p = &a[0];
则值为6的表达式是(提示:运算符->的优先级高于++)()。