Codelite C ++程序不能编译和运行(Codelite C++ program not co

2019-10-22 13:45发布

我codellite 7.0昨天装并一直在试图与它合作。 但似乎有一些问题。 我不能运行任何代码。 现在的代码是非常简单的。

#include <stdio.h>

int main(int argc, char **argv)
{
   printf("hello world\n");
return 0;
}

但是,它返回以下输出是空白与Press any key to continue

当前的工作目录:d:\ .....

正在运行的程序:le_exec.exe ./1

程序,返回代码退出:0

Answer 1:

你的程序运行精细,唯一的问题是,之后printf程序返回0,并立即关闭,它不运行,并打印出的“Hello World”,你根本没有时间去看它。

为了使程序等待用户输入,这样就可以看到输出使用cin.get()

#include <stdio.h>
#include <iostream>

int main(int argc, char **argv)
{
   printf("hello world\n");
   std::cin.get();
return 0;
}


文章来源: Codelite C++ program not compiling and running
标签: c++ codelite