在 Notepad++ 中运行 C 程序需要安装 MinGW 编译器:下载并安装 MinGW。在 Notepad++ 中配置编译器:设置 > 首选项 > 执行 > 自定义命令,命令为 "C:\MinGW\bin\gcc.exe" -o "$(CURRENT_DIRECTORY)\$(NAME_PART).exe" "$(FULL_CURRENT_PATH)"。参数为 -Wall。按 F5 键编译和运行程序。
Notepad++ 运行 C 程序
如何使用 Notepad++ 运行 C 程序?
在 Notepad++ 中运行 C 程序需要安装编译器。推荐使用 MinGW(Minimalist GNU for Windows),它是一个免费且功能强大的 C 编译器。
安装 MinGW
配置 Notepad++
在“命令”字段中输入以下命令:
<code>"C:\MinGW\bin\gcc.exe" -o "$(CURRENT_DIRECTORY)\$(NAME_PART).exe" "$(FULL_CURRENT_PATH)"</code>
-Wall
。编译和运行 C 程序
F5
键编译和运行程序。示例
以下是在 Notepad++ 中运行的示例 C 程序:
<code class="c">#include <stdio.h> int main() { printf("Hello, world!\n"); return 0; }</code>
按照上述步骤,您可以使用 Notepad++ 轻松地编译和运行 C 程序。
The above is the detailed content of How to run notepad++ in c. For more information, please follow other related articles on the PHP Chinese website!