在使用getchar()函数时必须( )。
A: 先定义一个字符变量
B: 使用 #include "stdio.h"
C: 使用 #define getchar
D: 什么也不需要
A: 先定义一个字符变量
B: 使用 #include "stdio.h"
C: 使用 #define getchar
D: 什么也不需要
举一反三
- 使用getchar()函数为字符变量c输入字符时,既可以使用ch=getchar()的形式,也可以使用getchar(c)的形式。
- 使用getchar和putchar函数进行单个字符输入输出时,必须使用预处理命令”#include”包括()文件。 A: stdio.h B: stdlib.h C: math.h D: string.h
- 使用getchar函数接收字符,若输入多余一个字符时,只接收 个字符。
- 使用getchar函数前必须包含头文件stdio.h
- 程序中需要使用printf、scanf、getchar和putchar等函数时,需要在程序源文件开头加上( )预处理命令。 A: B: define C: D: include "stdio.h" E: F: include "math.h" G: 什么都不需要加