Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它一直在告诉我
gcc hello.cpp -o hello gcc: error: hello.cpp: No such file or directory gcc: fatal error: no input files compilation terminated.
请任何人帮助
源文件需要位于您调用 gcc 的同一路径中,或者您可以将完整路径放在那里
gcc /home/username/Desktop/hello.cpp
或者您可以执行 cd /home/username/Desktop 然后从该给定路径调用 gcc。
设置 .cpp 文件所在的当前目录