功 能: 送一個字元到標準輸出流(stdout)中,出錯則返回EOF。
基本介紹
- 中文名:fputchar
- 外文名:fputchar
- 功能:送一個字元到標準輸出流中
- 用 法:int fputchar(char ch)
- 注意:出錯則返回EOF
函式名: fputchar
用 法: 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!!\n";
char *p = NULL;
// Print line to stream using _fputchar.
p = strptr;
while( (*p != '\0') && _fputchar( *(p++) ) != EOF )
;
}