C 中的 fputc() 函數
原型:
int fputc(const char ch, FILE *filename);
參數:
const char ch, FILE *filename
返回類型:整型
函數的使用:
在文件處理中,我們通過 fputc() 函數從輸入流緩衝區中取出下一個字符並將字符放入文件中,並將文件指針加一。函數 fputc() 的原型為:int fputc(const char ch, FILE *filename);
在這裏它將字符放入指定的文件中filename
是文件流的名稱。
C 中的 fputc() 示例
#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("\n...............print the characters..............\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語言 fputs()用法及代碼示例
- C語言 fprintf()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 fillellipse()用法及代碼示例
- C語言 fgets()用法及代碼示例
- C語言 freopen()用法及代碼示例
- C語言 frexp()用法及代碼示例
- C語言 fclose()用法及代碼示例
- C語言 fseek() vs rewind()用法及代碼示例
- C語言 fflush()用法及代碼示例
- C語言 fgetc()用法及代碼示例
- C語言 fillpoly()用法及代碼示例
- C語言 ftell()用法及代碼示例
- C語言 fseek()用法及代碼示例
- C語言 fgets() and gets()用法及代碼示例
- C語言 fscanf()用法及代碼示例
- C語言 ferror()用法及代碼示例
- C語言 fgetc() and fputc()用法及代碼示例
- C語言 fwrite()用法及代碼示例
注:本文由純淨天空篩選整理自Souvik Saha大神的英文原創作品 fputc() function in C language with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。