纠错 void GetMemory( char **p, int num ) { *p = (char *)malloc(num); } void Test( void ) { char *str = NULL; GetMemory(&str, 100); strcpy(str, "hello"); printf(str); }
时间: 2023-06-17 14:08:09 浏览: 165
GetMemory的基本用法
纠错后的代码如下:
```
void GetMemory(char** p, int num)
{
*p = (char*)malloc(num);
}
void Test(void)
{
char* str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf("%s", str);
free(str); // 记得释放内存
}
```
需要注意以下几点:
1. 在 `printf` 语句中,需要使用 `%s` 格式化字符串的输出。
2. 在使用 `malloc` 分配内存后,需要在合适的时机手动释放内存,否则会出现内存泄漏的问题。这里我们在程序结尾处使用了 `free` 函数释放了内存。
阅读全文