I have to write a program for the university as a weekly project that gets an int array as an input and the contents can only be 0 and 1.Its supposed to be a maze solver.1 as wall and you can move on 0.But after a move in any direction it has to mark the previous location with a '*'.And I need to use some functions:
1)void TurnLeft
2)void TurnRight
3)void MoveForward
4)int IsFacingWall
5)int IsOutside(in which everything...