#include #include #include #include using namespace std; const int width = 80; const int height = 20; int snakeX = width/2; int snakeY = height/2; bool gameover; void start(){ gameover=false; } void draw(){ //Change "clear" to "cls" if compiling for Windows system("clear"); for(int i=0; i