我刚学了一些 C,我想在家里试试。问题是,每当我单击构建时,都会出现类似的错误
'gcc' is not recognized as an internal or external command, operable program or batch file.
与编译按钮相同。
以下是构建命令:
- 编译:
gcc -Wall -c "%f"
- 建造:
gcc -Wall -o "%e" "%f"
- 执行:
"./%e"
我刚学了一些 C,我想在家里试试。问题是,每当我单击构建时,都会出现类似的错误
'gcc' is not recognized as an internal or external command, operable program or batch file.
与编译按钮相同。
以下是构建命令:
gcc -Wall -c "%f"
gcc -Wall -o "%e" "%f"
"./%e"