Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rafaelgoncalves8/c_kr

Exercises from the book "The C programming language" from Brian Kernighan and Dennis Ritchie
https://github.com/rafaelgoncalves8/c_kr

dennis-ritchie exercise k-and-r kernighan solutions the-c-programming

Last synced: about 2 months ago
JSON representation

Exercises from the book "The C programming language" from Brian Kernighan and Dennis Ritchie

Awesome Lists containing this project

README

        

# C_KR
Exercises from the book "The C programming language" from Brian Kernighan and Dennis Ritchie

## Compile the code on linux machine:

To complile the codes in linux useing gcc type:
```
cc code_name.c
```
and the output will be a.out, or if you prefer:
```
cc code_name.c -o code_name
```
to compile your code in the output name desired

## Chapters:
```
1 - Ok - A Tutorial Introduction
2 - Types, Operators and Expressions
3 - Ok - Control Flow
4 - Functions and Program Structure
5 - Pointers and Arrays
6 - Structures
7 - Input and Output
8 - The UNIX System Interface
--
Appendix A - Reference Manual
Appendix B - Standard Library
Appendix C - Summary of Changes
```

Index with a list of exercises and answers is inside each of the chapters directories