📜  在 Windows 10 上编译 gcc C 代码 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:07:51.169000             🧑  作者: Mango

在 Windows 10 上编译 gcc C 代码 - Shell-Bash

简介

在 Windows 10 上编译 gcc C 代码需要在命令行中使用 Shell-Bash 。Shell-Bash 是一种命令行界面,它在 Linux 和 Unix 操作系统中被广泛使用,如今也支持 Windows 操作系统。本文将介绍如何在 Windows 10 上使用 Shell-Bash 来编译 gcc C 代码。

步骤
安装 Shell-Bash

在 Windows 10 上安装 Shell-Bash 可以通过 Microsoft Store 下载 Ubuntu 应用来实现。以下是操作步骤:

  1. 打开 Microsoft Store 应用
  2. 搜索 Ubuntu 并下载
  3. 打开 Ubuntu 应用并设置用户名和密码
安装 gcc

在 Shell-Bash 中安装 gcc 可以通过使用 apt 命令来实现。以下是操作步骤:

  1. 打开 Shell-Bash

  2. 输入以下命令并执行:

    sudo apt update && sudo apt install build-essential
    

    该命令将更新 apt 仓库并安装基本编译工具集。

编译 C 代码

在 Shell-Bash 中编译 C 代码可以通过以下步骤来实现:

  1. 打开 Shell-Bash

  2. 进入 C 代码的目录:

    cd /path/to/code
    
  3. 使用 gcc 编译 C 代码:

    gcc -o output_file input_file.c
    

    -o output_file 表示编译输出文件名为 output_fileinput_file.c 表示需要编译的 C 代码文件。

运行编译后的程序

在 Shell-Bash 中运行编译后的程序可以通过以下步骤来实现:

  1. 打开 Shell-Bash

  2. 进入编译输出文件所在的目录:

    cd /path/to/output_file
    
  3. 运行程序:

    ./output_file
    
完整示例

以下是在 Windows 10 上编译、运行 C 代码的完整示例:

  1. 打开 Shell-Bash

  2. 进入 C 代码的目录:

    cd /path/to/code
    
  3. 使用 gcc 编译 C 代码:

    gcc -o hello_world hello_world.c
    
  4. 进入编译输出文件所在的目录:

    cd /path/to/hello_world
    
  5. 运行程序:

    ./hello_world
    

    输出结果:

    Hello, world!
    
结论

通过本文,你学会了在 Windows 10 上使用 Shell-Bash 编译和运行 C 代码的方法。希望本文对你有所帮助!