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

时间:2024-03-29 15:41:24

相似题目