Collection of programs and challenge solutions written in C.
Find a file
2026-01-19 22:21:38 +00:00
.vscode Minor changes. Added launch configs 2026-01-19 22:21:38 +00:00
challenges Removed empty challenge 2025-11-15 22:59:29 +00:00
projects Cleaned up root directory 2025-12-16 00:31:27 +00:00
.gitignore Minor changes. Added launch configs 2026-01-19 22:21:38 +00:00
README.md Minor changes. Added launch configs 2026-01-19 22:21:38 +00:00

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