Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 585 Bytes

README.md

File metadata and controls

18 lines (18 loc) · 585 Bytes

Snake-Game-

Snake Game (Old School)

Link to running code on browser:

https://snakegame-3p34g812s1pkk57pqdk.codequotient.in

How To Run on Your Machine?

Simple C compiler as the application is console based

Commands for GCC Compiler

-> Save the source Code in main.c file -> Open Terminal -> cd Desktop / (location of the main.c file) -> Command => gcc main.c (compilation) -> Command => ./a.out The Program should run successfully and Game Board will be visible.

Navigation Controls:

LEFT : 'a' + ENTER key RIGHT: 'd' + ENTER key UP: 'w' + ENTER key DOWN: 's' + ENTER key