关于 Turbo C 在 Windows 7 下工作
我正在使用 Windows 7 64 位笔记本电脑。我安装了 Turbo C 并使用 dosbox 编写程序,但我无法运行该程序....当选择运行时,它会显示一些消息,例如不是 :exe ,请给出此问题的解决方案
i am using windows 7 64 bit laptop.i installed turbo c and write programs using dosbox, but i can't run the program.... when run is selected it show some message like not an :exe plz give solution to this problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不要使用快捷键ctrl+f9来运行程序,因为它也是关闭DOSBOX的快捷键。使用菜单选项卡来编译和运行程序。
Do not use shortcut ctrl+f9 to run program as it is also a shortcut to close DOSBOX. use menu tab to compile and run programs.
如果您可以“忍受”它,我会在 Linux 和 win7(双启动)上运行虚拟机,并以 Windows XP 作为来宾操作系统。这样,我只需根据需要启动虚拟机即可。 VMWare 和 virtualbox 都是不错的。
If you can "live" with it, I run a VM over my linux and win7 (dual boot) with windows XP as the guest OS. This way, I just boot up the VM as necessary. VMWare and virtualbox are good ones.
由于长模式的限制,64 位 Windows 无法运行 8 位或 16 位可执行文件。通过 MinGW 或 Cygwin 使用 gcc 来构建它们。
64-bit Windows cannot run 8- or 16-bit executables due to limitations of Long Mode. Use gcc via MinGW or Cygwin to build them instead.
这是您正在构建的 DOS 程序。所以你也必须在 DOS 下运行它。
It's a DOS program you're building. So you'll have to run it under DOS, too.