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.
- Host: GitHub
- URL: https://github.com/xpdojo/c
- Owner: xpdojo
- Created: 2021-12-11T11:04:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-21T17:32:02.000Z (over 2 years ago)
- Last Synced: 2025-02-06T15:53:25.535Z (over 1 year ago)
- Topics: c
- Language: C
- Homepage: https://en.wikipedia.org/wiki/C_(programming_language)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```