我在尝试输入I / O文件的代码中具有此功能,但似乎无法做到这一点。
void show_list(int whyeven[stuff], char *hatred[stuff])
{
for (int g = 0; g < stuff - 1; g++)
{
if (whyeven[g] < 10 || whyeven[g] == 0)
{
printf("%s - %d (*) you should buy more of this stuff\n\n",hatred[g], whyeven[g]);
}
else if (whyeven[g] > 10)
{
printf("%s - %d\n\n", hatred[g], whyeven[g]);
}
}
}
int main()
{
show_list(moarstuff, items);
return 0;
}
最佳答案
printf()
打印到stdout
。您需要fopen()
该文件,然后将fprintf()
与fopen()
FILE*
指针返回的值一起用作第一个参数。
/* Open the file for writing */
FILE* fp = fopen("filename.txt", "w");
/* Check for errors */
if (fp == NULL)
{
/* Notify the user of the respective error and exit */
fprintf(stderr, "%s\n", strerror(errno));
exit(1);
}
/* Write to the file */
fprintf(fp, "Hello!\n");
/* Close the file */
fclose(fp);
注意:您的问题尚不清楚,这个答案是基于我的理解。
关于c - 如何在C中向文件输入函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41226930/