Collection of programs and challenge solutions written in C.
| .vscode | ||
| challenges | ||
| projects | ||
| .gitignore | ||
| README.md | ||
C Programming Collection
Projects
- PNG Colour Inverter
- PPM Pixel Generator
- Password Generator
- Rock, Paper, Scissors Game
Leetcode/Hackerrank solutions stored in /challenges
Compile with GCC/Clang
gcc <pathToSource.c> -o <pathToBinary>
./<pathToBinary>
Note: If running in IDE with run configs, copy output of pkg-config command into compiler options field
Invert Image requires libpng
gcc invertImage.c -lpng -o invertImage