What is Dynamic Code Analysis?
How is it different from Static Code Analysis (ie, what can it catch that can\'t be caught in static)?
I\'ve heard of bounds c
Bounds checking
This means runtime checks of array accesses. Contrary to C's laissez-faire approach to memory accesses and pointer arithmetic, other languages like Java or C# actually check whether or not a given array has the element one is trying to access.