當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 fgetc()用法及代碼示例


C 中的 fgetc() 函數

原型:

    int fgetc(FILE *filename);

參數:

    FILE *filename

返回類型:整型

函數的使用:

在文件處理中,通過fgetc()函數,我們從輸入流中取出下一個字符,並將文件指針遞增 1。函數原型fgetc()是:int fgetc(FILE* filename);

它返回一個整數值,它是一個unsigned char.它也返回EOF這也是一個整數值。

C 中的 fgetc() 示例

#include <stdio.h>
#include <stdlib.h>

int main()
{
    //Initialize the file pointer
    FILE* f;
    char ch;

    //Create the file for write operation
    f = fopen("includehelp.txt", "w");

    printf("Enter five character\n");
    for (int i = 0; i < 5; i++) {
        //take the characters from the users
        scanf("%c", &ch);
        //write back to the file
        fputc(ch, f);
        //clear the stdin stream buffer
        fflush(stdin);
    }

    //close the file after write operation is over
    fclose(f);

    //open a file
    f = fopen("includehelp.txt", "r");

    printf("File content is--\n");
    printf("\n...............print the strings..............\n\n");
    while (!feof(f)) {
        //takes the characters in the character array
        ch = fgetc(f);
        //and print the characters
        printf("%c\n", ch);
    }

    fclose(f);

    return 0;
}

輸出

fgetc example in c



相關用法


注:本文由純淨天空篩選整理自Souvik Saha大神的英文原創作品 fgetc() function in C language with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。