收起
哪来的Hello类型?test函数没有参数,但你调用的时候却传递了一个0,当然不对了啊函数改为:char *test(){ return "hello";}main函数改为:int main(){ puts(test());}
报告相同问题?