英语频道小编Cara整理了英语单词fputchar的学习资料,关于fputchar是什么意思这个问题进行了详细的讲解,包括fputchar的英语意思解释、正确音标读音及发音、用法,fputchar的英文短句例句含义讲解等与英文单词fputchar相关的信息。
fputchar
百科函数名: fputchar 功 能: 送一个字符到标准输出流(stdout)中,出错则返回EOF。 用 法: int fputchar(char ch); 程序例: MSDN中的例子: // crt_fputchar.c // This program uses _fputchar // to send a character array to stdout. #include <stdio.h> int main( void ) { char strptr[] = "This is a test of _fputchar!! "; char *p = NULL; // Print line to stream using _fputchar. p = strptr; while