如何解决错误 193:%1 不是 dev c++ 中的 win32 应用程序?
how to resolve Error 193:%1 is not a win32 application in dev c++?
甚至无法编译 hello world 程序
#include <iostream>
using namespace std;
int main(){
cout <<"hello world";
system("pause");
return 0;
}
Dev ++ 显然可以编译为 16 位体系结构,并且自 Windows Vista 以来它们已被弃用和不受支持。所以你显然必须使用不同的编译器。
甚至无法编译 hello world 程序
#include <iostream>
using namespace std;
int main(){
cout <<"hello world";
system("pause");
return 0;
}
Dev ++ 显然可以编译为 16 位体系结构,并且自 Windows Vista 以来它们已被弃用和不受支持。所以你显然必须使用不同的编译器。