我是一名在C ++课程下学习的学生,我被迫使用Borland C ++ 5.02。
我一直在尝试编译我的代码,但每次运行或调试它时都会弹出一条消息,说“无法创建进程”。我尝试使用文件,类,动态分配来运行程序,所有这些都弹出相同的消息。我检查了我的路径,看起来很好。我发布了我测试过的一个程序的代码并尝试运行。
# include <iostream.h>
# include <conio.h>
void main()
{
enum{a,b,c,d};
cout << a << endl << b << endl << c << endl << d ;
getch();
}
它是一个16位编译器,运行在64位Windows 8.1操作系统上的模拟器上。
我已经阅读了与我类似的问题的答案,但这些方法都没有对我有用。
这是它显示的错误: -
Info :helloworld.cpp: out of date with destination helloworld.obj
Info : helloworld.cpp: source date 11:22:18 23/03/2015 destination date <unknown>
Info :Compiling C:\Users\prana_000\Desktop\All computer related guides and projects\C++ works\12th grade\helloworld.cpp
Info :Linking C:\Users\prana_000\Desktop\All computer related guides and projects\C++ works\12th grade\helloworld.exe
答案 0 :(得分:0)
好的,我找到了一个解决方案,而且具有讽刺意味的是,Turbo C ++。好吧,它不是一个解决方案,但我下载了DOSBOX的Turbo C ++ 4.0,并使用它作为我的主要编译器一切都很好:)。谢谢你的帮助!