gpt4 book ai didi

c - fwrite => fprintf

转载 作者:太空宇宙 更新时间:2023-11-04 01:40:22 24 4
gpt4 key购买 nike

我在将 fwrite(tmp_array, sizeof(int), num, f); 行更改为 fprintf 时遇到问题。

有人可以帮我看看吗?

 void generate_random_sorted_file(const char *file_name, int num)
{
FILE *f = fopen(file_name, "wb");
if (f==NULL)
{
printf("could not open %s\n", file_name);
return;
}

int *tmp_array = calloc(num, sizeof(int));
int i;

for (i=0; i<num; i++)
tmp_array[i]=rand();

qsort (tmp_array, num, sizeof(int), compare); /* sorts the array */
fwrite(tmp_array, sizeof(int), num, f);

fclose(f);
}

最佳答案

fprintf 会将您的整数数组写成文本,如果这是您想要的,请执行类似的操作

int i;
for(i = 0; i < num; i++)
fprintf(f,"%d ",tmp_array[i]);

关于c - fwrite => fprintf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6426413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com