char *xyz() { char str[32]; strcpy(str,"Hello there!"); return(str); } void main() { printf("%s",xyz()); }
当我调用xyz()时,是否会返回一个悬空指针?谢谢
c
c ×1