📅  最后修改于: 2020-09-25 08:29:38             🧑  作者: Mango
int putc(int ch, FILE* stream);
putc()
函数将输出文件流和一个整数作为其参数。整数将转换为无符号字符并写入文件。
putc()
和fputc()在功能方面相似。但是, fputc()
和putc()
之间的主要区别在于putc()
可以实现为宏。
它在
#include
#include
int main()
{
char str[] = "Testing putc() function";
FILE *fp;
fp = fopen("file.txt","w");
if (fp)
{
for(int i=0; i
当您运行该程序时, 字符串 “ Testing putc() 函数"将被写入file.txt文件。