/*There is a maze, use recursive method to get out **print the route each time ** */ #include #include #include #include using namespace std; void print_array(char maze[12][12],int max_row,int max_col) { //delay(300); system("sleep 1"); system("clear"); //gotoxy(1,1); for(int i=0;i=0&&start_row<12&&start_col>=0&&start_col<12) { if(start_row==4&&start_col==11) cout<<"success"<