我在notepad++上创建了一个“hello world”程序,并在命令提示符下执行了它。但不会显示为exe。请帮忙,我的路径也设置正确了。我只想通过命令提示符找到并执行它。
最佳答案
尝试使用以下方法(如果您使用的是g++):
gcc -Wall -g -o Arithmetic.exe Arithmetic.c
从http://www.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html
关于c - 在命令提示符下找不到exe,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26788507/