C語言fputs()和fgets()函式


在C語言程式設計中,fputs()fgets()函式用於從流中寫入和讀取字串。下面來看看看如何使用fgets()fgets()函式寫和讀檔案的例子。

寫檔案:fputs()函式

fputs()函式將一行字串寫入檔案,它將字串輸出到流。

fputs()函式的語法:

int fputs(const char *s, FILE *stream)

範例:

建立一個原始檔:fputs-write-file.c,其原始碼如下 -

#include<stdio.h>  
void main() {
    FILE *fp;

    fp = fopen("myfile2.txt", "w");
    fputs("hello c programming \n", fp);
    fputs("yiibai tutorials c programming \n", fp);
    printf("all content had write to file: myfile2.txt\n");
    fclose(fp);
}

執行上面範例程式碼,得到以下結果 -

all content had write to file: myfile2.txt

執行上面程式碼後,開啟檔案:myfile2.txt,應該會看到以下內容 -

hello c programming 
yiibai tutorials c programming

讀取檔案:fgets()函式

fgets()函式從檔案中讀取一行字串,它從流中獲取字串。

語法:

char* fgets(char *s, int n, FILE *stream)

範例:

建立一個原始檔:fgets-read-file.c,其程式碼如下所示 -

#include<stdio.h>  

void main() {
    FILE *fp;
    char text[300];

    fp = fopen("myfile2.txt", "r");
    printf("%s", fgets(text, 200, fp)); // 第一行
    printf("%s", fgets(text, 200, fp)); // 第二行
    fclose(fp);
}

執行上面範例程式碼,得到以下結果 -

hello c programming 
yiibai tutorials c programming