fputchar()函数用于输出字符到标准输出流。
fputchar()函数 语法
int fputchar(char c);
参数c为要输出的字符。
fputchar()函数返回最后一个字符输出流。
fputchar()函数 示例
本示例使用fputchar函数将字符”Good luck to you”送到标准输出流中,其具体代码如下所示:
#include<stdio.h>
int main(void)
{
char s[]="Good luck to you";/*定义字符数组*/
int i=0;
while(s[i])
{
fputchar(s[i]);/*输出字符*/
i++;
}
return 0;
}
运行fputchar()函数 示例结果如下图所示: