C 中的 putc() 函数
putc() 函数定义在<stdio.h>
头文件。
原型:
int putc(const char ch, FILE *filename);
参数: const char ch, FILE *filename
返回类型: int
函数的使用:
在文件处理中,通过putc()函数,我们将stdin中的字符写入到输入文件流中,并递增文件位置指针。函数 putc() 的原型是int putc(const char* string, FILE *filename);
它返回一个整数值,它是一个无符号字符的转换。如果发生错误,它还返回 EOF。每当有二进制文件检查错误时,函数 ferror()
C 中的 putc() 示例
#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 reday 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;
}
输出
相关用法
- C语言 putc()用法及代码示例
- C语言 putchar()用法及代码示例
- C语言 putpixel()用法及代码示例
- C语言 puts()用法及代码示例
- C语言 pthread_cancel()用法及代码示例
- C语言 pthread_equal()用法及代码示例
- C语言 printf() and scanf()用法及代码示例
- C语言 pthread_self()用法及代码示例
- C语言 perror()用法及代码示例
- C语言 printf()用法及代码示例
- C语言 pieslice()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sprintf()用法及代码示例
- C语言 outtextxy()用法及代码示例
注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 putc() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。