如何使用 Borland C 编译程序编译器 v5.5 (bcc32)
我刚刚安装了 Borland C++ Compiler v5.5..
我从哪里开始? 如何用它编译 C++ 程序?
I just installed Borland C++ Compiler v5.5..
Where do I begin?
How do I compile C++ programs with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看这些文章:
http://edmulroy.portbridge.com/howto.htm
http://www.codeproject.com/KB/recipes/usingbcc.aspx
PS我同意评论说,如果你想学习 C++,从像 Visual C++ Express 这样的免费 C++ IDE 开始会更容易。
Check these articles:
http://edmulroy.portbridge.com/howto.htm
http://www.codeproject.com/KB/recipes/usingbcc.aspx
P.S. I agree with the comments, that if you want to learn C++, it will be easier to start with a free C++ IDE like Visual C++ Express.
转到“开始”,单击“运行”,然后键入“Command”,然后按 Enter 键。
现在,输入“cd c:\borland\bcc55\bin”并按 Enter 键。
您现在应该位于上述目录中(您的提示符应为:“c:\Borland\BCC55\Bin”);如果没有,请检查您输入的内容是否正确。
输入“bcc32 test.cpp”并按回车键。如果一切正常,这应该会产生以下输出:
Go to start, click on run, and type "Command", and hit enter.
Now, type "cd c:\borland\bcc55\bin" and hit enter.
You should be in the above directory now (your prompt should read: "c:\Borland\BCC55\Bin"); if not, check that you typed it correctly.
Type in "bcc32 test.cpp" and hit enter. This should result in the following output if everything worked: