int A[100000000]; Also has no protection.
There are multiple false myths about VLAs. Please known that VLA is about the typing not about the storage. The line: typedef int T[n]; is the essence of VLA-ness, not `int A[n]`. The array of VLA type can have any kind…
int A[100000000]; Also has no protection.
There are multiple false myths about VLAs. Please known that VLA is about the typing not about the storage. The line: typedef int T[n]; is the essence of VLA-ness, not `int A[n]`. The array of VLA type can have any kind…