Mọi người giải đáp cho mình câu lệnh “int temp = -MAXINT” trong đoạn code này với ạ
unsigned int MaxSumRow(int A[max][max], unsigned int n, unsigned int m)
{
int temp = -MAXINT, sumRow;
unsigned int row;
for(unsigned int i = 0; i<n; i++)
{
sumRow = 0;
for(unsigned int j = 0; j<m; j++)
sumRow+=A[i][j];
if(temp < sumRow)
{
temp = sumRow;
row = i;
}
}
return row;
}