/WordGuesser

Terminal word guessing game written in C

Primary LanguageC

WordGuesser

Project to gauge my current programming ability, originally from a C++ course on udemy.

Known crap

there's a few examples of bad code that i'd probably clean up if i wanted to do this for real

  1. bad if statements
  2. unnecessary use of typedef struct over regular structs.
  3. potential memory problems with using stdlib functions.
  4. a few hardcoded strings that could've been better in a struct somewhere.
  5. Clearer function code that can maybe use return instead of manually calling it every time.
  6. probably some other stuff i missed, i'm sure you'll let me know wink .

How to build

clone the directory and run gcc main.c;clear;./a.out

don't ask me how to compile on windows.