如何在Nitrous.io中运行/编译C ++程序?

时间:2014-04-04 19:08:18

标签: c++ compilation

我刚刚开始使用Nitrous.IO,我似乎无法在网上找到有关如何运行您在其中制作的C ++程序的任何信息。任何有关如何运行在Nitrous中制作的C ++应用程序的帮助都将是一个巨大的帮助。

1 个答案:

答案 0 :(得分:1)

所有命令都将在控制台中运行

第1步:

使用以下命令进入相应的目录:

cd ./folder/subfolder/etc.

第2步:

输入以下命令以运行fileName.cpp程序:

// This will make a separate file named 'fileName' 
// within the directory you are working in.
// This can now be run in the console.
g++ -o fileName fileName.cpp

第3步:

输入以下命令运行程序:

//The output will display in the console. Enjoy!
./fileName

ps:answer was there