通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
若有以下程序段:
struct st {int n; int *m;}; int a=2,b=3,c=5; struct st s[3]=({101,&a},{102,&c},{103,&b}}; main() {struct st *p; p=s; …}
则以下表达式中值为5的是( )。