We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
关于gcc的多文件编译的第二种方式的介绍中,有一行命令有误:
gcc -o testfun.o test.o -o test //将testfun.o和test.o链接成test
正确语句应该为
gcc testfun.o test.o -o test
Activity