c++ - 如何解决错误 193 :%1 is not a win32 application in dev c++?

标签 c++ dev-c++

甚至无法编译 hello world 程序

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

    }

最佳答案

Dev++ 显然可以编译为 16 位架构,并且从 Windows Vista 开始就已弃用和不受支持。所以你显然必须使用不同的编译器。

关于c++ - 如何解决错误 193 :%1 is not a win32 application in dev c++?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50060823/

相关文章:

c++ - 石头剪刀布的麻烦

c++ - 将灰度 OpenCV 图像传递给 OpenGL 纹理

c++ - 在 C(也许是 C++)中寻找数值/多媒体/信号处理基准

c++ - Dev-C++ 4.9.9.2 项目选项不起作用

c - 指针 C 的值

c++ - 在 C++ 中传递函数

c++ - 控制台应用程序不会立即关闭

c - Dev-C++ 给出 '&' 引用语法错误

c++ - Dev -Cpp 编译器生成错误

c++ - 如何在 Release模式下使用宏重新定义函数?