我在研究輸入/輸出文件。下面的代碼涉及到一些函數,如:fgetc(),fgets(),fputs()。我不知道爲什麼它不能像我想要的那樣工作。非常感謝你!下面是我的代碼: #include <stdio.h>
int main()
{
FILE *fp; //FILE type pointer
int c; //using to get each character fro
我正在嘗試在C中創建數據庫,並使用.txt文檔作爲存儲所有數據的位置。但是我無法讓fputs()移位,所以我的程序在這個.txt文件中寫入的所有內容都只在一行上。 int main(void){
char c[1000];
FILE *fptr;
if ((fptr=fopen("data.txt","r"))==NULL){
printf("Did n
這是我的以下程序。我不想要一個新的生產線,這就是爲什麼我用fputs()代替puts() char words[5][6] = {"One", "Two", "Three", "Four", "Five"};
for (i = 0; i <= 4; i++)
fputs(words[i], stdout);
我想知道,這行代碼是足夠安全,以替代該代碼使用。 for (i = 0;