词条 | getc |
释义 | § 词条解释 函数名: getc 功 能: 从流中取字符 用 法: int getc(FILE *stream); § 程序例 #include <stdio.h> int main(void) { char ch; printf("Input a character:"); /* read a character from the standard input stream */ ch = getc(stdin); printf("The character input was: '%c'\", ch); return 0; } § 相关条目 计算机; 程序; 语言; 编程; C++ ; 函数 |
随便看 |
百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。