C C++ Errors Question:
char* f()
return "hello:";
void main()
{char *str=f();
}
Answer:
str will be a pointer to "hello:"
so on printing str will output hello:
so on printing str will output hello: