0_0_39864092_11957.cpp: In function 'int main()':
0_0_39864092_11957.cpp:7:43: error: 'arr' was not declared in this scope
7 | for(int i=0;i<n;i++) cin>>arr[i];
| ^~~
0_0_39864092_11957.cpp:11:28: error: 'arr' was not declared in this scope
11 | if(abs(arr[j])>abs(arr[maxIndex])) maxIndex=j;
| ^~~
0_0_39864092_11957.cpp:12:26: error: 'arr' was not declared in this scope
12 | swap(arr[i],arr[maxIndex]);
| ^~~
0_0_39864092_11957.cpp:14:44: error: 'arr' was not declared in this scope
14 | for(int i=0;i<n;i++) cout<<arr[i]<<" ";
| ^~~
|