通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下述程序的输出结果是( )。
void prt(int *x) { printf("%d",++*x); } main() { int y=30; prt(&y); }