Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chibby0ne/k_r_exercises
Solutions of the exercises of K&R's "The C Programming Language"
https://github.com/chibby0ne/k_r_exercises
Last synced: about 4 hours ago
JSON representation
Solutions of the exercises of K&R's "The C Programming Language"
- Host: GitHub
- URL: https://github.com/chibby0ne/k_r_exercises
- Owner: chibby0ne
- License: gpl-2.0
- Created: 2014-12-11T21:25:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-11T22:57:52.000Z (about 10 years ago)
- Last Synced: 2024-11-08T11:22:58.407Z (about 2 months ago)
- Language: C
- Homepage:
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# K&R's "The C Programming Language" Exercises' Solutions
## Requirements
* GCC
* Make## Compilation
First, clone:
```bash
git clone https://github.com/chibby0ne/K_R_Exercises
```To compile all of the exercises:
```bash
cd K_R_Exercises
make all```
To compile only a certain folder's exercises:
```bash
cd K_R_Exercises
cd ChapterX
make all
```## License
[GPLv2](https://raw.githubusercontent.com/chibby0ne/K_R_Exercises/master/LICENSE)
## Bugs
* Chapter04 - Doesn't make - "no rule for calc"
* Chapter06 - Exercise06 finish
* Chapter08 - Exercise3
* Not a bug but improve syntax and style of everything!!