void Test(void){char *str = (char *) malloc(100); strcpy(str, “hello”); free(str); if malloc(100); strcpy(str, “hello”); free(str); if(str != NULL) { strcpy(str, “world”); printf(str);}}请问运行 Test 函数会有什么样的结果? 参考答案 查看答案