0_0_17368795_12620.cpp: In function 'void dfs(int, int)':
0_0_17368795_12620.cpp:6:11: error: 'maze' cannot be used as a function
maze(i, j) = '*';
^
0_0_17368795_12620.cpp:8:22: error: 'm' was not declared in this scope
for(int x = -1; x < m; x++) {
^
0_0_17368795_12620.cpp:9:23: error: 'n' was not declared in this scope
for(int y = -1; y < n; y++) {
^
0_0_17368795_12620.cpp:13:28: error: expected primary-expression before '=' token
if(0 <= nx && nx < n && = <= ny && ny < m && maze[i][j] == '@')
^
0_0_17368795_12620.cpp:13:30: error: expected primary-expression before '<=' token
if(0 <= nx && nx < n && = <= ny && ny < m && maze[i][j] == '@')
^
0_0_17368795_12620.cpp: In function 'int main()':
0_0_17368795_12620.cpp:22:31: error: expected ')' before '{' token
while(~scanf("%d%d", &n, &m) {
^
|