153、回答下面的问题(1).VoidGetMemory(char**p,intnum){*p=(char*)malloc(num);//一级指针的值被修改}voidTest(void){char*str=NULL;GetMemory(&str;,100);//传递的是一级指针的地址strcpy(str,"hello");printf(str);}请问运行Test函数会有什么样的结果?答:输出“hello”(2).voidTest(void){char*str=(char*)malloc(100);strcpy(str,“hello”);free(str);