如何在 MS-windows vista 中使控制台屏幕(Turbo C 编辑器)全屏

发布于 2024-08-13 18:56:27 字数 76 浏览 1 评论 0原文

我在 Turbo C 中用 c/c++ 创建程序。但我面临的问题是我无法在 Windows Vista 中使其全屏显示。请告诉我该怎么做?

I creates program in c/c++ in turbo c . but i am facing problem is that i am not able to make it full screen in windows vista. please tell me how to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱*していゐ 2024-08-20 18:56:27

为什么你还生活在Turbo时代?改用更好的编译器。

gcc 和 MSVC++ 专业版是更好的。

在 Windows 上使用 DevCpp 或 Code::Blocks 等 IDE,两者都支持 gcc 的 MinGw 端口。

Why are you still living in the Turbo era? Switch on to some better compiler.

gcc and MSVC++ Professional Edition are better ones.

On windows use IDEs like DevCpp or Code::Blocks, both support MinGw port of gcc.

辞旧 2024-08-20 18:56:27

恐怕,但你不能再可靠地切换到全屏文本模式了。

Microsoft 不赞成在图形驱动程序中支持全屏文本模式。现在它是可选的,一些驱动程序仍然支持它,但大多数制造商都懒得实现已弃用的功能。

您能做的最好的事情就是打开一个真正的 GUI 窗口并模拟文本模式显示。显然这不适用于 DOS 程序。


编辑:如果你的生活不能没有全屏,你可以随时安装 DOSBOX。它将执行 Dos 程序并可以为您模拟全屏。然而,你的程序会运行得更慢,因为 DOSBOX 基本上是一个模拟器,有它自己的性能开销。

I'm afraid, but you can't reliable switch to full-screen text mode anymore.

Microsoft deprecated support for full-screen text mode in the graphic drivers. It's optional now and some drivers still support it, but most manufacturers don't bother implementing a deprecated feature.

The best thing you can do is to open a real GUI window and emulate the text-mode display. Obviously this will not work with DOS programs.


Edit: If you can't life without full-screen you can always install DOSBOX. It will execute Dos programs and can emulate fullscreen for you. However, your programs will run slower because DOSBOX is basically a emulator and has it's own performance overhead.

浅忆流年 2024-08-20 18:56:27

您还可以使用新的 Visual C++ 2008 Express 版本,它具有更新的 C++ 编译器,您也可以在尝试创建 C 程序/应用程序时使用它。如果你确实想使用Turbo编译器,你可以在Visual C++ 2008 Express上设置外部工具,使用Turbo编译器作为外部工具。这样您就可以使用 MS C++ 编译器和 Turbo 编译器来编译您的程序...

you can also use the new Express editions of Visual C++ 2008, it has an updated C++ compiler, which you can also use when trying to create C programs/apps. If you really wanna use Turbo compilers, you can set external tools on the Visual C++ 2008 Express, using the Turbo compilers as the external tools. That way you can compile your program with both MS C++ Compiler and your Turbo Compilers...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文