如何在windows中设置Turbo C路径?

发布于 2024-07-08 12:37:00 字数 194 浏览 11 评论 0原文

如何在 Windows 中全局设置 Turbo C 路径,以便我可以在 Windows XP 中使用命令提示符编译和运行我的 C 程序(位于其他驱动器中)? 谁能告诉我如何通过

c:\tcc  

在 Windows 和 Turbo C 环境中的命令提示符中键入来在命令提示符中的每个驱动器上获取命令?

How to set the turbo c path in windows globally so that i can compile and run my C programs (which are in other drives) using command prompt in windows XP?
Can any one tell me how to get commands at every drive in the command prompt just by typing in

c:\tcc  

in command prompt in windows and turbo c environment?

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

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

发布评论

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

评论(2

秋意浓 2024-07-15 12:37:00
  • 转到“开始”菜单,然后转到“控制面板”。
  • 选择“系统”小程序。
  • 单击“高级”选项卡。
  • 单击“环境变量”
  • 找到“路径”变量,然后按“编辑”
  • 附加分号,然后是 Turbo C 的路径

要设置包含和库路径,请转到相同的位置,但不要编辑“路径”变量,创建一个名为“INCLUDE”的新变量,并将其设置为turboc“\include”目录的位置; 并创建一个名为“LIB”和一个名为“CLASSPATH”的目录,并将它们设置到您的turboc“\lib”目录中。

  • Go to the Start Menu, then Control Panel.
  • Choose the "System" applet.
  • Click on the "Advanced" tab.
  • Click on "Environment Variables"
  • Find the "Path" variable, and press "Edit"
  • Append a semicolon, then the path to Turbo C

For setting the include and library paths, go to the same place, but instead of editing the "Path" variable, create a new variable called "INCLUDE", and set it to the location of your turboc "\include" directory; and create one called "LIB" and one called "CLASSPATH", and set them to your turboc "\lib" directory.

还如梦归 2024-07-15 12:37:00

您使用这么旧的编译器有什么原因吗? 如果我没记错的话,Turbo C 上次发布是在 20 世纪 90 年代初。

我可能建议下载免费的 Visual Studio Express Edition 这是一个更现代的编译器,您会发现这里还有更多愿意提供帮助的人。 它还附带了良好的文档,并且可以更轻松地在网上搜索文章和帮助。

Is there some reason why you're using such an old compiler? Turbo C was last released in the early 1990s, if I remember correctly.

I might suggest downloading the free Visual Studio Express Edition which is a much more modern compiler and you will find many more people here who are willing to help. It also comes with good documentation and it's easier to search the net for articles and help for it.

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