首页 > 解决方案 > 如何解决错误 193:%1 不是 dev c++ 中的 win32 应用程序?

问题描述

甚至无法编译 hello world 程序

 #include <iostream>
    using namespace std;
     int main(){
    cout <<"hello world";
    system("pause");
    return 0;

    }

标签: c++dev-c++

解决方案


Dev ++ 清楚地编译为 16 位体系结构,并且它们已被弃用和不受支持,因为正是 Windows Vista。所以你显然必须使用不同的编译器。


推荐阅读