Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does sublime text3 configure the c language compilation environment and test

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

这篇文章主要介绍"sublime text3如何配置c语言编译环境并测试",在日常操作中,相信很多人在sublime text3如何配置c语言编译环境并测试问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"sublime text3如何配置c语言编译环境并测试"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

使用sublime text3编译c语言部分准备工作

下载sublime text3

配置计算机c语言编译环境,下载MinGW即可

配置MinGW的系统变量

将下载解压的MinGW的bin文件路径写进系统的path路径下。 下面有教程!

配置sublime text3c语言编译环境

配置环境变量

为了方便,一般我们会把gcc所在的路径加入系统的环境变量,这样就可以直接使用gcc命令而不用绝对路径。右键计算机->属性->高级系统设置->环境变量

在path的值中,可以发现有一些目录,他们之间用英文的分号分隔。我们双击path,把我们gcc的路径 C:\MinGW\bin 添加进去。 要注意前后的英文分号。

确定以后 就可以在任意目录下直接使用gcc命令了。可以在任意目录打开cmd窗口,输入gcc - v查看环境变量是否设置成功。如果仍然提示不是内部或外部命令,说明环境变量设置失败。

如果失败,请重新配置环境变量!这一步至关重要,新手很容易卡在这一步!

新建sublime text3的c语言编译环境

第一步,打开sublime text3 选择 中文版:工具>>编译系统>>新建编译系统 英文版:tool -> Build System -> New Build System

输入下面代码保存

{"shell_cmd":"g++ \"${file}\" -o \"${file_path}/${file_base_name}\"","file_regex":"^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$","working_dir":"${file_path}","selector":"source.c, source.c++", "variants":[{"name":"Run","shell_cmd":"g++ \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""}]}

按Ctrl+s保存,会自动打开user目录(Sublime Text 3\Packages\User),我们修改 文件名为 c.sublime-build,保存在此目录。

保存之后,可以在Tools -> Build System下看到刚才新建的c了(工具->编译系统)

至此,已经配置完了所有环境,只需要写入代码即可运行,下来我们一起写一个简单的程序测试一下

首先写上一段c代码进sublime text3

#include \\经典的c语言入门程序int main(void){ printf("hell\n");return 0;}

2. 然后选择编译环境 选择工具>>编译系统>>选择c即可

3.写完代码按下快捷键:Ctrl+Shift+B

4.第一行中c就是对应执行配置文件中的第三行 gcc -Wall $file_name -o $file_base_name作用是编译。

第二行的c-Run对应后面的命令 gcc -Wall $file -o $file_base_name && start cmd /c \"${file_path}/${file_base_name} & pause\",作用是是在新的cmd窗口运行。这样就可以对scanf等函数进行输入了。

5.我们选择第二行c-Run

6.完美运行。

到此,关于"sublime text3如何配置c语言编译环境并测试"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report