如何在windows中设置Turbo C路径?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要设置包含和库路径,请转到相同的位置,但不要编辑“路径”变量,创建一个名为“INCLUDE”的新变量,并将其设置为turboc“\include”目录的位置; 并创建一个名为“LIB”和一个名为“CLASSPATH”的目录,并将它们设置到您的turboc“\lib”目录中。
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.
您使用这么旧的编译器有什么原因吗? 如果我没记错的话,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.