This README was originally meant for cgit on my old server, not GitHub.
-
The greatest common divisor exercise solution
ROOT/GCD/GCD.c -
Hexadecimal to integer converter solution
ROOT/HTOI/HTOI.c -
Vowels and consonants counter of a string
ROOT/VACC/VowelsAndConsonantCounter.c -
Binary (28-bit) to decimal converter
ROOT/BTD/28bitToDecimal.c -
Palindrome words checker exercise
ROOT/Palindrome/Palindrome.c -
Sorting numbers using Selection Sort
ROOT/SelectionSort/SelectionSort.c -
Simple Rock, Paper, Scissors game
ROOT/RPS/rps.c -
Simple Number Guessing Game (NGG) using Node.js in terminal
ROOT/NGG/* -
Hangman game (word guesser) written in C ❤️
ROOT/HangManGame/HMG.c -
Simple Snakes and Ladders game written in C
ROOT/snakesAndLadders/snakesANDladders.C -
A folder containing simple C programs written during a period away from coding
-
Dynamic student list project with basic functions
(learning linked lists and implementing one in a project)
ROOT/DynamicStudentList/DynamicStudentList.c -
Hash Map with basic functions (learning hash map implementation with linear probing)
ROOT/HashMap/HashMap.c -
miniDB that uses my hash map to store persistent data :D
ROOT/miniDB/*