This Project in C Snake Game is a simple console application without graphics. In this project, you can play the popular “Snake Game” just like you played it elsewhere. You have to use the up, down, right or left arrows to move the snake. Foods are provided at the several co-ordinates of the screen for the snake to eat. Every time the snake eats the food, its length will by increased by one element along with the score. Steps to create this game : There will be four user-defined functions . Build a boundary within which the game will be played. The fruits are generated randomly. Then increase the score whenever the snake eats a fruit. The user-defined functions created in this program are given below: Draw(): This function creates the boundary in which the game will be played. Setup(): This function will set the position of the fruit within the boundary. Input(): This function will take the input from the keyboard. Logic():...