不适用编译器,如果创建/运行 CPP程序


1、创建并保存CPP 文件;

#include <iostream>

int main(int argc, const char * argv[]) {
    // insert code here...
    std::cout << "Hello, World!\n";
    return 0;
}

我的文件叫做 test01.cpp,在 Test01 文件夹下面。


2、然后通过命令编译成 exec 文件。

 $ cd /Users/sysit/MacOSExec/CPPDemos/Test01 
Test01 $ g++  test01.cpp

3、运行 exec 文件

$ ./a.out
Hello, World!

直接运行 $ a.out 会报错 -bash: a.out: command not found 拖拽文件到终端,可以运行成功