如果项目中文件hello.c的内容被破坏,执行( )使其还原至原始版本。
A: git reset -- hello.c
B: git checkout HEAD -- hello.c
C: git revert hello.c
D: git update hello.c
A: git reset -- hello.c
B: git checkout HEAD -- hello.c
C: git revert hello.c
D: git update hello.c
举一反三
- 如果项目中文件hello.c的内容被破坏,执行()使其还原至原始版本。 A: git<br/>reset -- hello.c B: git<br/>checkout HEAD -- hello.c C: git<br/>revert hello.c D: git<br/>update hello.c
- gcc 编译hello.c 生成hello可执行文件的命令是 A: gcc hello.c B: gdb hello.c C: gcc hello.c -o hello D: gdb hello.c -o hello
- 使用GCC编译源文件hello.c生成可执行文件hello的命令是( )。 A: gcc -v hello.c -o hello B: gcc -w hello -f hello.c C: gcc -w hello -o hello.c D: gcc -v hello.c -f hello
- 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
- 如果编译C语言程序hello .c时使用命令 gcc hello.c,结果产生文件是( ) A: hello B: hello.o C: a.out D: hello.o和a.out