Question: I don't know what I am doing wrong? Can someone help? Thank you. #include #include #define DOWN 1//move DOWN #define RIGHT 2//move RIGHT #define LEFT

I don't know what I am doing wrong? Can someone help? Thank you.
#include #include #define DOWN 1//move DOWN #define RIGHT 2//move RIGHT #define LEFT 3//move LEFT #define UP 4//move UP //starting X and Y coordinate for Maze #define X_START 2 #define Y_START 0 //function prototypes 17 void mazeTraverseC char maze [12][12], int xCoord, int yCcord, int direction): void printMoze() const char maze [][12]): int validMove(const char maze [] [12], int r, int c): int checkForEdge(int x, int y): int main(void) { //maze grid char maze [12][12] = 39 mazeTraverseC maze, X_START, Y_START, RIGHT): 40 return 0: gcc version 4.6.3 /tmp/ccCXjzG7.os In function "main": main.c: (.text+0 times 295)t undefined reference to 'mazeTraverse' collect2: error: Id returned 1 exit status exit status 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
