编写简单的Makefile文件,完成对hello程序的编译运行
举一反三
- 编写一个文件的程序,使用Makefile文件进行编译。
- 智慧职教: hello.c和hello.h位于同一目录下,源代码如下所示。 /*hello.c*/ int main() { printf("Hello everyone! "); } /*hello.h*/ #include 要求编写Makefile文件实现对这两个文件的编译,Makefile文件如下所示。请选出应填写在空白处的选项。 /*Makefile*/ hello:hello.c hello.h
- hello.c和hello.h位于同一目录下,源代码如下所示。/hello.c/int main(){ printf(“Hello everyone!”);}/hello.h/#include要求编写Makefile文件实现对这两个文件的编译,Makefile文件如下所示。请选出应填写在空白处的选项。/Makefile/hello:hello.c hello.h A: gcc hello.c&hello.h -o hello B: gcc hello.c hello.h -o hello C: make hello.c&hello.h -o hello D: make hello.c hello.h -o hello
- 中国大学MOOC: hello.c和hello.h位于同一目录下,源代码如下所示。/*hello.c*/int main(){ printf("Hello everyone! ");}/*hello.h*/#include <stdio.h>要求编写Makefile文件实现对这两个文件的编译,Makefile文件如下所示。请选出应填写在空白处的选项。/*Makefile*/hello:hello.c hello.h
- 开发Java程序的步骤包括运行、编写、编译,它们的先后顺序是( )。 A: 运行—编写—编译 B: 编写—运行—编译 C: 编译—编写—运行 D: 编写—编译—运行