1.

How is SSRANGE different from NOSSRANGE?

Answer»

Both are options USED by the compiler for finding subscript outside of range.
SSRANGE is used for handling the overflow of an array systematically. It needs to be SPECIFIED explicitly which helps in finding exact subscript outside of range. Whereas the NOSSRANGE is used in cases of very sensitive applications that are driven by PERFORMANCE. It is the default option that gets applied and NEED not be specified explicitly and it does not support runtime errors whenever the index goes out of range.



Discussion

No Comment Found