+ 7
Did you read the compiler's error messages? You're using several undeclared functions like gotoxy(int, int) and variables like p, _x and _y. You need to declare them before you can use them. What are statements like x++;p; x++; (line 46) supposed to do?