Skip to content

环境安装

sh
# mac
brew install gcc

# debian
sudo apt-get install -y gcc
sh
# mac
brew install llvm

# debian
sudo apt-get install clangd-12

hello world

c
#include <stdio>

int main() {
  printf("hello world");
  return 0;
}

编译执行

sh
# 编译
gcc ./main.c -o main

# 运行
./main

注释

c
#include <stdio>

int main() {
  // 单行注释
  // 会输出一个 hello world 到控制台
  printf("hello world");

  /*
    这是一个多行注释,
    可以写很多内容,
    编译时会忽略这些注释
  */
  return 0;
}

Released under the MIT License.