Beginner here with coding problem

Radius:
The serial monitor returned the temperature data in a 1x16 array. How could I arrange the rows and columns in the for loop to give me the desired 4x4 matrix form?

How about something like:

  for (int i=0; i<4; i++)
  {
    for (int j=0;j<4; j++)
    {
      Serial.print(tempArray[i][j]);
      Serial.print(" ");
    }
    Serial.println();
  }

Not formatted but I think you'll get the idea.

Regards,

Brad
KF7FER