最佳答案
如何将一小段文本写入 .txt
文件?
我已经在谷歌上搜索了超过3-4个小时,但找不到如何做到这一点。
fwrite();
有很多参数,我不知道怎么用它。
当您只想向 .txt
文件写入一个名称和几个数字时,最容易使用的函数是什么?
char name;
int number;
FILE *f;
f = fopen("contacts.pcl", "a");
printf("\nNew contact name: ");
scanf("%s", &name);
printf("New contact number: ");
scanf("%i", &number);
fprintf(f, "%c\n[ %d ]\n\n", name, number);
fclose(f);