logoalt Hacker News

kanbankarenyesterday at 11:07 PM1 replyview on HN

30 years in C/C++ here.

Give an example of UB code that you have committed in real life, not from blogs. I am genuinely curious.


Replies

jechtoday at 12:45 AM

> Give an example of UB code that you have committed in real life

    struct foo {
        ...
        atomic_int v;
        ...
    };
    
    struct foo x;
    memset(&x, 0, sizeof(x));
show 1 reply