0_0_39691857_10813.cpp:4:9: error: expected identifier before numeric constant
4 | int a= [1000] [1000];
| ^~~~
0_0_39691857_10813.cpp: In lambda function:
0_0_39691857_10813.cpp:4:15: error: expected '{' before '[' token
4 | int a= [1000] [1000];
| ^
0_0_39691857_10813.cpp: At global scope:
0_0_39691857_10813.cpp:4:15: error: no match for 'operator[]' (operand types are '<lambda()>' and 'int')
0_0_39691857_10813.cpp: In function 'int main()':
0_0_39691857_10813.cpp:12:31: error: invalid types 'int[int]' for array subscript
12 | cin>>a[i][j];
| ^
0_0_39691857_10813.cpp:18:31: error: invalid types 'int[int]' for array subscript
18 | int x = abs (a[i][j]);
| ^
0_0_39691857_10813.cpp:27:39: error: invalid types 'int[int]' for array subscript
27 | cout << (r+1) <<' ' << (c+1) <<' '<< a[r][c] <<endl;
| ^
|