词条 | cscanf |
释义 | § 函数名 cscanf § 功能 从控制台执行格式化输入 § 用法 int cscanf(char *format【,argument, ...】); § 程序例 #include int main(void) { char string【80】; /* clear the screen */ clrscr(); /* Prompt the user for input */ cprintf("Enter a string with no spaces:"); /* read the input */ cscanf("%s", string); /* display what was read */ cprintf("\\r\The string entered is: %s", string); return 0; } |
随便看 |
百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。