Home > Article > Development Tools > How to run c language in sublime
如何使用 Sublime Text 运行 C 语言
1. 安装编译器
首先,您需要安装一个 C 语言编译器,例如:
如果您使用 Windows 系统,建议安装 MinGW。
2. 配置 Sublime Text
完成后,您需要配置 Sublime Text 以使用编译器:
<code>"c_cpp_properties": { "executables": { "gcc": "C:\\Program Files\\MinGW\\bin\\gcc.exe", "g++": "C:\\Program Files\\MinGW\\bin\\g++.exe" }, "configurations": { "Debug": { "build_integrated": true } } }</code>
3. 编写代码
创建新的 .c
文件,输入您的 C 语言代码。
4. 编译和运行
以下是如何编译和运行您的代码:
Ctrl
+ B
(Windows)或 Cmd
+ B
(macOS)编译代码。Ctrl
+ F5
(Windows)或 Cmd
+ F5
(macOS)运行代码。5. 调试(可选)
如果您需要调试您的代码,可以使用 Sublime Text 的内置调试器:
F5
开始调试。The above is the detailed content of How to run c language in sublime. For more information, please follow other related articles on the PHP Chinese website!