int main(int argc, char** argv) { while(**argv++!='a'); printf("%s", *argv); return 0; }
这有啥问题啊?判断的是传入参数中第一个字母不是a的字符串,自然就是bcd了啊