Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rafaelgoncalves8/c_kr
- Owner: RafaelGoncalves8
- Created: 2016-01-04T16:38:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-12T00:44:22.000Z (almost 6 years ago)
- Last Synced: 2024-10-13T17:22:09.066Z (3 months ago)
- Topics: dennis-ritchie, exercise, k-and-r, kernighan, solutions, the-c-programming
- Language: C
- Size: 65.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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