Skip to content

6. 常用函数-输入输出

发布时间:

<cstdio>

cstdio全称:standard buffered input&output cstdio是将stdio.h的内容用C++头文件的形式表示出来,stdio.h是C标准函数库 。

函数描述
int getchar( void)从 stdin 读取一个字符并返回所读字符,当出现读错误或遇到文件结尾时返回 EOF
char * gets(char * buffer)从标准输人流读取一行,并存储在 buffer 中。读人换行符但没有保存换行符。
int putchar(int c)写一个字符到stdout 中。
int puts(const char * string)将string 写到标准输出流 stdout,用换行符(八口”代替字符串的结尾的空字符(10,。
int sprintf(char * buffer,const char x formatL. Argument] ... )将数据格式化后写到字符串中
int sscanf(const char x buffer.const char x formatt. Argument] .... )由buffer 读取字符数据并较换后存储到每个 argument 指定的位置中。