- This repository is intended for learning different C techniques, especially advanced stuff.
- I created these to improve my knowledge and skills, and to understand deeply the universe of C programming language.
- You might need
GNU GCC,GNU GDB, andGNU Make.- You can choose which sample programs you want to run by importing the header of that example directory.
- All the programs here runs and tested in
Debian Linux.
# Generate an executable file.
make build
# Run the program inside GDB.
make debug
# Run the program normally.
make run