PIN GUESSING GAME
C VERSION
This program asks the user to enter a pin. if a match is found, user access to the system is granted.

PINGUESSINGGAME.C
FUTURE IMPROVEMENTS
Lockout mechanism
Rate limiting
C++ VERSION
PINGUESSINGGAME.CPP

PYTHON3 VERSION
Readers may notice that I include semicolons at the end of some statements. Although Python allows semicolons, they are not typically used as statement terminators. In Python, a semicolon functions only as a statement separator, and placing one at the end of a line has no practical effect. My use of semicolons is an intentional personal choice: including them in my Python code helps me maintain familiarity with C and C++, where semicolons are required, and preserves the rhythm of writing C/C++ syntax when switching between languages
PINGUESSINGGAME.PY

x86-64 ASSEMBLY VERSION
Last updated