#include< reg51.h>和#include" reg51.h",本质一样。
A: 正确
B: 错误
A: 正确
B: 错误
举一反三
- 在C51编程中,需要将软件提供的与各个单片机型号相对应的头文件包含到自己编写的程序中方便对硬件的各种操作。下面哪个是正确格式? A: B: include "reg51.h" C: D: include "reg51" E: F: Include "reg51.h" G: H: INCLUDE "reg51.h"
- #include <reg51.h>与#include “reg51.h”是等价的。 A: 正确 B: 错误
- 以下程序中,运行结果是36的有()。 A: B: include <stdio.h> C: define M(y) y*y int main() { printf("%d ",M(6+0)); return 0; } D: E: include <stdio.h> F: define M(y) (y)*(y) int main() { printf("%d ",M(6+0)); return 0; } G: H: include <stdio.h> int M(int y) { return y*y; } int main() { printf("%d ",M(6+0)); return 0; } I: J: include <stdio.h> int M(int y) { return (y)*(y); } int main() { printf("%d ",M(6+0)); return 0; }
- 下列叙述不正确的是( )。? #include命令可以包含一个含有函数定义的C语言源程序文件。|使用#include <文件名>的形式比使用#include "文件名"形式节省编译时间。|#include "C:\\user\\file.h"是正确的包含命令,它表示文件file.h存放在C盘的user目录下。|#include <…>格式中的文件名之前可以包括路径。
- #include <reg51.h>与#include “reg51.h”是等价的。( )