char *xyz() { char str[32]; strcpy(str,\"Hello there!\"); return(str); } void main() { printf(\"%s\",xyz()); }
When I call xyz(), is i
It will indeed return a dangling pointer.