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;
}
输出
相关用法
- C语言 fgetc() and fputc()用法及代码示例
- C语言 fgets()用法及代码示例
- C语言 fgets() and gets()用法及代码示例
- C语言 fgetpos()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 fillellipse()用法及代码示例
- C语言 freopen()用法及代码示例
- C语言 frexp()用法及代码示例
- C语言 fclose()用法及代码示例
- C语言 fseek() vs rewind()用法及代码示例
- C语言 fflush()用法及代码示例
- C语言 fputc()用法及代码示例
- C语言 fputs()用法及代码示例
- C语言 fillpoly()用法及代码示例
- C语言 ftell()用法及代码示例
- C语言 fseek()用法及代码示例
- C语言 fscanf()用法及代码示例
- C语言 ferror()用法及代码示例
- C语言 fwrite()用法及代码示例
注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 fgetc() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。