C 库函数 - putchar()
C 语言教程
· 2019-02-23 22:43:59
描述
C 库函数 int putchar(int char) 把参数 char 指定的字符(一个无符号字符)写入到标准输出 stdout 中。
声明
下面是 putchar() 函数的声明。
int putchar(int char)
参数
- char -- 这是要被写入的字符。该字符以其对应的 int 值进行传递。
返回值
该函数以无符号 char 强制转换为 int 的形式返回写入的字符,如果发生错误则返回 EOF。
实例
下面的实例演示了 putchar() 函数的用法。
#include <stdio.h> int main () { char ch; for(ch = 'A' ; ch <= 'Z' ; ch++) { putchar(ch); } return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
ABCDEFGHIJKLMNOPQRSTUVWXYZ
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Web Analytics 2.0
Avinash Kaushik / Sybex / 2009-10-26 / USD 39.99
The bestselling book Web Analytics: An Hour A Day was the first book in the analytics space to move beyond clickstream analysis. Web Analytics 2.0 will significantly evolve the approaches from the fir......一起来看看 《Web Analytics 2.0》 这本书的介绍吧!