通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
阅读下面程序,程序执行后的结果为( )。
#include "stdio.h" main() {char *str="abcdefghijklmnopq"; while(*str++!='e'); printf("%c\n",*str); }