# Richard Stallman, GNU C Language Intro 및 Reference Manual 발표

> Clean Markdown view of GeekNews topic #7352. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=7352](https://news.hada.io/topic?id=7352)
- GeekNews Markdown: [https://news.hada.io/topic/7352.md](https://news.hada.io/topic/7352.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2022-09-07T10:00:06+09:00
- Updated: 2022-09-07T10:00:06+09:00
- Original source: [lists.gnu.org](https://lists.gnu.org/archive/html/info-gnu/2022-09/msg00005.html)
- Points: 14
- Comments: 3

## Topic Body

- 다른 언어를 아는 상태에서, C 언어를 배우기 위한 매뉴얼   
- Git Repo에 Texinfo 포맷으로 작성되어 있어서 클론후 Make 해야함(PDF, HTML등으로)

## Comments



### Comment 12197

- Author: alstjr7375
- Created: 2022-09-07T13:46:26+09:00
- Points: 1

오랜만에 이름들어보네요

### Comment 12196

- Author: gguimoon
- Created: 2022-09-07T11:37:16+09:00
- Points: 1

First example 코드가 1.1 Example: Recursive Fibonacci 입니다 :)

### Comment 12193

- Author: xguru
- Created: 2022-09-07T10:00:10+09:00
- Points: 1

웹 버전으로 컴파일 해둔 것 보기 https://crms.tiiny.site/  
  
혹시나 해보실 분들을 위해 macOS에서 직접 Docker 이용해서 컴파일하기  
```  
docker run -t -i -v $HOME/docker-mounted:/tmp ubuntu /bin/bash  
apt update  
apt install -y texlive-latex-extra ghostscript texinfo git make   
git clone https://git.savannah.gnu.org/git/c-intro-and-ref.git  
cd c-intro-and-ref  
make c.pdf  
cp c.pdf /tmp   
```
