标签: c
#include < stdio.h > int main() { char *s; s=call(); printf(s); } char* call() { return("hello"); }
为什么这些代码不起作用。它产生了一个错误。我如何使它工作?
答案 0 :(得分:2)
两件事:
#include <stdio.h>
call()