fputc.c
来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· C语言 代码 · 共 52 行
C
52 行
/*FUNCTION<<fputc>>---write a character on a stream or fileINDEX fputcANSI_SYNOPSIS #include <stdio.h> int fputc(int <[ch]>, FILE *<[fp]>);TRAD_SYNOPSIS #include <stdio.h> int fputc(<[ch]>, <[fp]>) int <[ch]>; FILE *<[fp]>;DESCRIPTION<<fputc>> converts the argument <[ch]> from an <<int>> to an<<unsigned char>>, then writes it to the file or stream identified by<[fp]>.If the file was opened with append mode (or if the stream cannotsupport positioning), then the new character goes at the end of thefile or stream. Otherwise, the new character is written at thecurrent value of the position indicator, and the position indicatoroadvances by one.For a macro version of this function, see <<putc>>.RETURNSIf successful, <<fputc>> returns its argument <[ch]>. If an errorintervenes, the result is <<EOF>>. You can use `<<ferror(<[fp]>)>>' toquery for errors.PORTABILITY<<fputc>> is required by ANSI C.Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,<<lseek>>, <<read>>, <<sbrk>>, <<write>>.*/#include <stdio.h>int_DEFUN (fputc, (ch, file), int ch _AND FILE * file){ return putc (ch, file);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?