what to do help in the code on C
Hello, I started making a game on C I have included the library <conio.h> and after that I don't get fields. HERE CODE #include <stdio.h> #include <stdlib.h> #include <conio.h> int main() { char mas[10][21]; int i; int x = 10, y = 5; char key; do { sprintf(mas[0], "####################"); for(i = 9; i < 9; i++) { sprintf(mas[i], "# #"); } sprintf(mas[9], "####################"); mas[y][x] = '*'; system("cls"); for(int i = 0; i < 10; i++) { printf("%s\n", mas[i]); } key = getch(); if(key == 'w')y--; if(key == 's')y++; if(key == 'a')x--; if(key == 'd')x++; } while(key != 'e'); return 0; }