1

每次我尝试构建和调试简单的 Hello World 代码时,都会收到一条错误消息,说明如下:

1>------ Build started: Project: helloworld, Configuration: Debug Win32 ------
1>  test.cpp
1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

我使用这段代码:

#include <iostream>
using namespace std;
void main() {
cout << "Hello, World!" << endl;
}

而且我认为每当我使用它时Main(),他们都会告诉我不要使用它或其他东西。帮助!!!

4

1 回答 1

0

尝试制作它int main()并确保放在块return(0);的末尾main()

于 2013-01-29T01:45:30.097 回答