#include"stdio.h" char* getmemory(void) { char p[]="hello world"; return p; } void main() { char *str=NULL; str=getmemory(); printf(str); }