Suppose v is an array with 100 int elements. If 100 is assigned to v[100], what happens?
a. The compiler issues an error message.
b. The compiler issues a warning message.
c. The program will terminate immediately.
d. Another variable or array will very likely be unexpectedly modified.

Respuesta :

Answer:

c. The program will terminate immediately.

Explanation:

Exception will be thrown .When statement is executed.

Answer:

Another variable or array will very likely be unexpectedly modified.

Explanation: