Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pmuens/modern-c


https://github.com/pmuens/modern-c

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

# Modern C

Code written while reading the book ["Modern C"](https://www.manning.com/books/modern-c) by Jens Gustedt.

## Setup

1. `git clone `
2. `asdf install`
3. `make` or `./run.sh `

## Useful Commands

```sh
asdf install
direnv allow

./run.sh

c99 -o .c -lm

clang -Wall -lm -o .c

gcc -std=c99 -Wall -lm -o -Wall -lm -o .c

icc -std=c99 -Wall -lm -o -Wall -lm -o .c

man printf

man 3 printf
```

## Useful Resources

- [Learn X in Y Minutes - C](https://learnxinyminutes.com/docs/c)
- [University of Washington - Quick and Dirty Guide to C](https://courses.cs.washington.edu/courses/cse351/16wi/sections/1/Cheatsheet-c.pdf)
- [Cheatography - C Reference Cheat Sheet](https://cheatography.com/ashlyn-black/cheat-sheets/c-reference)