当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 getc()用法及代码示例


C 中的 getc() 函数

原型:

    int getc(FILE *filename);

参数:

    FILE *filename

返回类型:整型

函数的使用:

在文件处理中,我们通过 getc() 函数从输入文件流中取出下一个字符并递增文件位置指针。函数 getc() 的原型为:

    int getc(FILE *filename);

它返回一个整数值,它是一个unsigned char.它也返回EOF它本身也是一个整数值。每当有二进制文件时,检查EOF与函数feof()

C 中的 getc() 示例

#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
        putc(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("Write operation is over and file is ready for read operation\n");
    printf("\n...............print the characters..............\n\n");
    while (!feof(f)) {
        //takes the characters in the character array
        ch = getc(f);
        //and print the characters
        printf("%c\n", ch);
    }
    fclose(f);

    return 0;
}

输出

getc example in c




相关用法


注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 getc() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。