- K&R 0: Historical Context
- From Python to C
- K&R 1: A Tutorial Induction
- K&R 2: Types, Operators, and Expressions
- K&R 3: Control Flow
- K&R 4: Functions and Program Structure
- K&R 5: Pointers and Arrays
- K&R 6: Structures
- Object Oriented Programming
- Encapsulation and Abstraction
- Tree Maps and Hash maps
- Epilogue
online C Programming book by Brain Kernigham and Dennis Ritchie
create a new repository on the command line
echo "# test" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/jayprophit/ git push -u origin main
push an existing repository from the command line
git remote add origin https://github.com/jayprophit/ git branch -M main git push -u origin main