#include <stdio.h> #include<string> void GetMemory(char **p) { (*p)=(char *)malloc(100); strcpy((*p),"hello world"); } int main() { char *str=NULL; GetMemory(&str); printf("%s",str); return 0; }