c++ string malloc
时间: 2023-09-03 14:09:38 浏览: 194
c语言 malloc函数详解
你可以使用`malloc`函数在C语言中动态分配内存空间来创建字符串。下面是一个示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
char* str = (char*) malloc(10 * sizeof(char)); // 分配10个字符的空间
if (str == NULL) {
printf("内存分配失败");
return 1;
}
strcpy(str, "Hello");
printf("%s\n", str);
阅读全文