Live data from Hacker News

Viewing profile — tstanisl

tstanisl

HN member
Joined
Fri, Aug 05, 2022, 10:13 AM UTC
HN karma
3
Public activity
2 items

About tstanisl

No profile information was provided.

Recent public activity

  1. comment
    Comment #32354077

    int A[100000000]; Also has no protection.

  2. 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]`. …