Viewing profile — tstanisl
tstanisl
HN member- Joined
- Fri, Aug 05, 2022, 10:13 AM UTC
- HN karma
- 3
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About tstanisl
No profile information was provided.
Recent public activity
-
comment
Comment #32354077
int A[100000000]; Also has no protection.
-
comment
Comment #32354049
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]`. …