程序中需要使用printf、scanf、getchar和putchar等函数时,需要在程序源文件开头加上( )预处理命令。
A:
B: define
C:
D: include "stdio.h"
E:
F: include "math.h"
G: 什么都不需要加
A:
B: define
C:
D: include "stdio.h"
E:
F: include "math.h"
G: 什么都不需要加
举一反三
- 在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入 A: B: include <;math.h>; C: D: include <;stdio.h>; E: F: define <;math.h>; G: H: define <;stdio.h>;
- 使用 getchar 和 putchar 函数时,必须在程序开头加上预处理命令#include < >。
- 使用scanf()和printf()函数时,必须在程序开头加上预处理命令()。 A: #include B: #include C: #include D: #include
- 如果程序中需要用到数学函数,头文件应该表示为()。 A: B: include " system.h " C: D: include " math.h " E: F: include " stdio.h " G: H: include " string.h "
- 使用scanf()函数时,在源程序开头必须写预处理命令( ) A: include <stdio.h> B: include <stdio > C: include <stdio.h> D: include <scanf.h>