#include <stdio.h> #include<string.h> #include<stdlib.h> void copy_int(int val, void* buf, int maxbytes) { if (maxbytes - (int)sizeof(val) >= 0) memcpy(buf, (void*)&val, sizeof(val)); } int main() { int max = 1114; void* buff = malloc(max); copy_int(514, &buff, 114); int a = *(int*)buff; printf("%d", a); }这段代码有没有错误
时间: 2023-11-20 15:04:44 浏览: 95
SeqList.h #include <stdio.h> //包含标准输入输出流的头文件 #include <assert.h
这段代码有一个错误,就是在调用 `copy_int` 函数时,传递的第二个参数应该是 `buff` 而不是 `&buff`。因为 `buff` 已经是一个指向 void 类型的指针,不需要再取其地址。修改后的代码如下:
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void copy_int(int val, void* buf, int maxbytes) {
if (maxbytes - (int)sizeof(val) >= 0)
memcpy(buf, (void*)&val, sizeof(val));
}
int main() {
int max = 1114;
void* buff = malloc(max);
copy_int(514, buff, 114);
int a = *(int*)buff;
printf("%d", a);
free(buff); // 释放内存
return 0;
}
```
注意,还需要在程序结束时释放 `buff` 所分配的内存,避免内存泄漏。
阅读全文