1

我目前正在运行g++版本4.3.4,当我运行以下命令时:

g++ -g -Wall test.cpp -o test.exe

对此:

#include<stdlib.h>
#include<iostream>

using namespace std;

int main (){
   cout << "Hello World!";
   system("pause");
   return 0;
}

似乎什么都没有发生:Cygwin似乎滞后了一会儿,但没有exe创建(如果源中有错误cpp,则显示)

和想法?

4

1 回答 1

5

我怀疑您实际上是在调用内置test命令。你是在执行你的程序./test./test.exe?这应该可以,但我会重命名它,以防万一。

于 2012-09-17T14:59:40.763 回答