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