• 2022-06-17
    智慧职教: hello.c和hello.h位于同一目录下,源代码如下所示。 /*hello.c*/ int main() { printf("Hello everyone! "); } /*hello.h*/ #include 要求编写Makefile文件实现对这两个文件的编译,Makefile文件如下所示。请选出应填写在空白处的选项。 /*Makefile*/ hello:hello.c hello.h