下列说法正确的是()
#include "stdio.h"
#include "string.h"
void fun(char *s){
char t[7];
s=t;
strcpy(s, "example");
}
int main(){
char *s;
fun(s);
printf("%s",s);
return 0;
}
A. 输出结果为"example"
B. 输出结果为"烫烫烫烫"
C. 程序编译时出现错误
D. 程序运行时出现错误
登录后提交答案