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 un handled exception.


C. A run time error may occur because row and column values are not correct.

Computer Science & Information Technology

You might also like to view...

Describe the following terms that are used in the Domain Name System.

Top-level domain

Computer Science & Information Technology

What is the name of the area of the e-mail where the actual message is typed?

A) Subject: B) Attachments: C) header area D) body

Computer Science & Information Technology

Buttons are identified in an interface by their _________.

A. name B. titleĀ  C. caption D. ID

Computer Science & Information Technology

The -> operator has a lower priority than the increment operator.

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

Computer Science & Information Technology