What type of error will this code produce?

```int x[10][20], i, j;
for(i = 0; i < 20; ++i)
{
for(j = 0; j < 10; ++ j)
{
x[i][j] = i*j;
}
}```
A. A compiler error will report that the program is not accessing the array correctly.
B. There are no errors of any kind with this code.
C. A run time error may occur because row and column values are not correct.
D. Program crashes due to an unhandled exception.


C

Computer Science & Information Technology

You might also like to view...

You must add the ____ that will create the recordset in which to store and retrieve data before you can use a database as a content source for a dynamic Web page.

A. client-side behaviors B. server-side behaviors C. meta tags D. templates

Computer Science & Information Technology

What is the Start screen and how is it different from the Desktop?

What will be an ideal response?

Computer Science & Information Technology

The ____________________ function finds the smallest value in a group of records.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

In order to merge multiple workbooks, each workbook must be a copy of the same workbook.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology