在DOS提示符下编译Turbo C程序?
如何在 64 位 DOS 提示符下编译 Turbo C 程序?
How can I compile a Turbo C program in a DOS prompt for 64 bit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 64 位 DOS 提示符下编译 Turbo C 程序?
How can I compile a Turbo C program in a DOS prompt for 64 bit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
嗯,没有 64 位 DOS,所以我假设您指的是
cmd.exe
提示符。在这种情况下,Turbo C 不会生成 64 位代码,而且考虑到它的年龄,它甚至可能无法在 64 位 Windows 上运行(尽管我不知道)这)。
你最好获得
gcc
(像啤酒和演讲一样免费),甚至Visual C++ Express(像啤酒一样免费)。 Turbo C 已经过时了,现在已经没有必要用它来做任何事了。Well, there is no 64-bit DOS so I'm assuming you meant the
cmd.exe
prompt.In that case, Turbo C doesn't produce 64-bit code and may well not even run on 64-bit windows, given its age (though I don't know this).
You'd be better off getting
gcc
(free as in beer and speech) or even Visual C++ Express (free as in beer). Turbo C is a dinosaur and there's really no need to use it for anything nowadays.您无法在 Windows x64 上运行 16 位应用程序。但是,您仍然可以使用 DOSBox 或成熟的虚拟机。
You can't run 16-bit applications on Windows x64. However, you can still use DOSBox or a full-blown virtual machine.