Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/captainepoch/c_book_solutions
My solutions for "The C Programming Language, 2nd edition".
https://github.com/captainepoch/c_book_solutions
c
Last synced: about 1 month ago
JSON representation
My solutions for "The C Programming Language, 2nd edition".
- Host: GitHub
- URL: https://github.com/captainepoch/c_book_solutions
- Owner: captainepoch
- License: mit
- Created: 2024-04-09T18:25:28.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-09T18:25:44.000Z (10 months ago)
- Last Synced: 2024-10-30T20:13:25.371Z (3 months ago)
- Topics: c
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# README
Solutions for _The C Programming Language, 2nd ed._ by Brian W.
Kernighan and Dennis M. Ritchie.# Compilation
Examples were compiled using:```
gcc -W -Wall -ansi -pedantic -g -o main main.c
```# License
[MIT](./COPYING)