Report Bug
Qus : What will happen if you try to access an array element out of its bounds in C?
QusWhat will happen if you try to access an array element out of its bounds in C?

A. Compilation error
B. Program will terminate with an error
C. Undefined behavior
D. Array index will wrap around


Solution
C. Undefined behavior






Report Bug