foo.cc: In function ‘void dfs(int, int)’:
foo.cc:8:17: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
8 | ans++;
| ^~~
| abs
foo.cc:15:44: warning: the address of ‘bush’ will never be NULL [-Waddress]
15 | if(x<1&&x>n&&y<1&&y>m||bush!=0)
| ~~~~^~~
foo.cc:3:11: note: ‘bush’ declared here
3 | int n,m,t,bush[15][15],dir[8][2]={{-2,1},{-2,-1},{2-1},{2,1},{1,-2},{1,2},{-1,-2},{-1,-2}};
| ^~~~
foo.cc:15:33: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
15 | if(x<1&&x>n&&y<1&&y>m||bush!=0)
| ~~~~~~~~~~~~~^~~~~
foo.cc: In function ‘int main()’:
foo.cc:29:25: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
29 | int x,y;ans=0
| ^~~
| abs