/* Exit from a maze */ #include #define m 4 #define n 8 char A[5][10] = { "**** ****", "*** * *", "*** ** **", "* **", "*********" }; char B[5][10] = { "*********", "*** **", "*** ** **", " * **", "*********" }; void search_exit(int,int,int *); void main(){ int *found; *found=0; search_exit(3,5,found); if (*found) cout<<"yes"<<'\n'; else cout<<"no"<<'\n'; cout<