如果我有我想要輸出到一個文本文件中的整數數組..Ç - 輸出到文件
void output()
{
for (i=0; i<10; i++)
printf("%d ", values[i]);
}
我如何保存()的輸出使用下面的方法爲文本文件?
void writeToFile()
{
file = fopen("file.txt","a+"); // apend file or create a file if it does not exist
fprintf(file,"%d", *missing parameter*); // write
fclose(file); // close file
printf("File created. Located in the project folder.\n", "");
}
它是關於如何組合兩個函數來遍歷數組值? – stacker 2010-03-07 09:59:59
不要在人們費力回答之後刪除你的問題。 – 2010-03-07 14:34:36