hey in this code
int main(int argc, char* argv[])
what do the bracket elements signify? i couldnt understand this.
for(int i=0;i<n;i++) {
for(int j=i;j<m;j++) {
swap(array[i][j],array[j][i]);
}
}
for(int i=0;i<n;i++) {
int lo = 0;
int hi = n-1;
while(lo<=hi) {
swap(array[lo][i], array[hi][i]);
lo++;
hi--;
}
}
also in the above code what is happening??