mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-17 05:54:34 +00:00
[PR #1472] feat: add Snake and Ladders game (single player) #2072
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/1472
State: closed
Merged: No
Description of Change
Added a single-player console-based Snake and Ladders game written in C.
The game uses a static board with predefined snakes and ladders, and the player rolls a dice until they reach exactly 100.
References
N/A – This is a new addition.
Checklist
Notes: This is my first open source contribution. The program is beginner-friendly and demonstrates the use of arrays, random numbers, and conditionals.