Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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"

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!!