What type of error will this code produce?

```int n[30], i;
for(i = 0; i <= 30; ++i)
n[i] = i;```
A. No compiler errors will be reported.
B. A compiler error is generated since there are no braces {} with the for loop.
C. A run time error may occur because we are out of bounds on the array.
D. Both A and C are correct.


D

Computer Science & Information Technology

You might also like to view...

What is the output of the following code given the function definition that follows:

cout << myFunction (7, 5, 2); // code in main int myFunction (int a, int b, int c) // function definition { int p = a + 2 * b + c; return p + 3; }

Computer Science & Information Technology

_____ is an example of a popular general purpose software suite for personal computer users.

A. Google Chrome B. Snow Leopard C. Mozilla Firefox D. Microsoft Office

Computer Science & Information Technology

You can only change or remove a password if you know the original password

Indicate whether the statement is true or false

Computer Science & Information Technology

If you were using relative cell references, the formula =A3+A4 would change to ____ when copied from cell A5 to cell B5.

A. =B3+B4 B. =B4+B5 C. =$B3+$B4 D. =B$4+B$5

Computer Science & Information Technology