VBA Matrix Operations An augmented array C is read from
the Excel sheet as we have done in our chapter examples. If
the elements of the first row of the array are 2.0, 2.0, 4.0, 8.0,
what would be printed to the Excel sheet in row 12 when the
following VBA program segment is executed for the first time?
For IP = 0 To 1
For IC = IP To 3
C(IP, IC) = C(IP, IC) / C(IP, IP)
Next IC
′ Place solution on Excel Sheet
For j = 0 To Ncolumns - 1
Sheet1.Cells(12, j + 2) = C(0, j)
Next j
Next IP