程序员要想调用输入输出函数,需要在程序的开头写上语句( )。 A. #include <stdlib.h> B. #include <stdio.h> C. #include <math.h> D. #include <string.h>
时间: 2024-06-20 12:01:34 浏览: 234
#include "stdio.h" /* 输入输出函数的头文件 */
要调用输入输出函数,程序员通常需要包含`<stdio.h>`头文件。这个头文件定义了标准输入输出流(stdin, stdout, stderr)以及常用的输入和输出函数,如printf(), scanf(), getchar(), putchar()等。
答案是:B. #include <stdio.h>
阅读全文