Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrzhouzh/c-learning
Learning c-language
https://github.com/mrzhouzh/c-learning
c-language
Last synced: about 2 months ago
JSON representation
Learning c-language
- Host: GitHub
- URL: https://github.com/mrzhouzh/c-learning
- Owner: MrZhouZh
- License: mit
- Created: 2024-07-11T01:30:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T10:57:58.000Z (6 months ago)
- Last Synced: 2024-09-30T01:03:57.412Z (3 months ago)
- Topics: c-language
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C 语言入门
C 语言是一门非常底层的编译型语言, 任何 Linux 或 MacOS 计算机都自带 C 编译器
## 初始
```sh
touch hello.c# 运行 gcc, 返回 [> clang: error: no input files]. 这表示你没有声明任何文件
gcc# 编辑器可使用任何, 记事本/sublime/vscode/vim/nano/etc...
# 生成了一个 hello 的可执行程序.
gcc hello.c -o hello# 运行, 返回 [> Hello World!%]
./hello
```## References
- [freecodecamp - C 语言入门手册:几小时内就能学会的 C 语言基础](https://www.freecodecamp.org/chinese/news/the-c-beginners-handbook/)