无需编译即可获取 C 程序的输出
我有一个 .c 文件,但只有一个 Windows 命令提示符。我必须得到程序的输出。
如果没有TC或TC3环境的支持,程序可以编译吗?如果是这样请帮忙。
I have a .c file and I have only a Windows command prompt. I have to get the output of the program.
Can the program be compiled without the support of TC or TC3 environment? If so kindly help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您可以访问互联网,则可以使用 http://codepad.org 等网站来编译和运行小程序各种语言在线。支持的语言包括 C、C++ 和许多其他语言。
Assuming you have internet access there are sites such as http://codepad.org which allow you to compile and run small programs in various languages online. Supported languages include C, C++ and many others.
您可以安装Cygwin,然后使用
gcc
编译它。You could install Cygwin and then compile it using
gcc
.如果您只有一个“.c”文件,那么您就没有程序。您必须首先编译程序以生成可执行文件,然后必须运行该程序以获得其输出。
If you only have a ".c" file, then you don't have a program. You must compile the program first to make an executable, and then you must run the program to get its output.