cl 源文件 /Fe可执行文件
比如 cl test.cpp /Fetest.exe编译test.cpp生成test.exe
gcc/g++ 源文件 -o 可执行文件
比如 g++ test.cpp -o test.exe编译test.cpp生成test.exe
cl 源文件 /Fe可执行文件
比如 cl test.cpp /Fetest.exe编译test.cpp生成test.exe
gcc/g++ 源文件 -o 可执行文件
比如 g++ test.cpp -o test.exe编译test.cpp生成test.exe