Question 3
Consider the following program snippet:
1 void exampleFunction(int x, int y)2 {3 char smallBuffer[4];4 char largeBuffer[8];5 }6 void main7 {8 exampleFunction(1, 2);9 }When largeBuffer[8] = smallBuffer[0] occurs, the situation is known as ___.
Heap overflow
Buffer overflow
Frame overflow
Stack overflow