An open API service indexing awesome lists of open source software.

https://github.com/xpdojo/c

C is a general-purpose computer programming language.
https://github.com/xpdojo/c

c

Last synced: about 1 year ago
JSON representation

C is a general-purpose computer programming language.

Awesome Lists containing this project

README

          

# C

## 헤더 파일 패키지

```sh
apt install \
build-essential \
linux-headers-$(uname -r)
# libssl-dev \
# libreadline-dev \
# zlib1g-dev \
# libbz2-dev \
```

## Compiler

### Clang (LLVM)

> 클랭이라고 발음한다.

```sh
sudo apt install clang
```

### GCC (GNU Compiler Collection)

```sh
sudo apt install gcc
```