alt.hn

8/2/2026 at 6:02:01 AM

Sizeof is surprisingly difficult to parse in C

https://sebsite.pw/w/20260802-sizeof.html

by jandeboevrie

8/2/2026 at 2:45:04 PM

> (everything here also applies to c2y's newly introduced _Countof)

Stop the press, they're adding what? So I don't have to keep adding #define count_of(arr) (sizeof(arr) / sizeof(*arr)) to every codebase and living with its failure modes?

I'm really loving C's character arc at the moment, where they keep going back to fix old problems instead of piling everything and the kitchen sink into the language.

by wren6991

8/2/2026 at 5:27:27 PM

> I'm really loving C's character arc at the moment, where they keep going back to fix old problems

Valid, but it does seem a bit Stockholm Syndrome to have this much rejoicing that your language added a builtin for getting the length of an array in 2026.

by zbentley

8/3/2026 at 7:50:07 AM

If only they actually fixed arrays and strings properly.

C23 and C2y have plenty of kitchen sink features.

by pjmlp

8/2/2026 at 3:48:51 PM

Yeah, despite puritanical hand-wringing over C23, I do like both the discipline and the selectivity with WG14 has shows (and I say this as a card-carrying C++ hater).

I do wish they will start looking into proper arrays since there is already a syntax for this can can be augmented semantically:

    int func (int arg[static 5])

by HexDecOctBin

8/2/2026 at 7:54:41 PM

Can you explain what you mean exactly regarding this augmenting this syntax?

by uecker

8/2/2026 at 9:07:55 PM

I guess they are saying sizeof(...) should return the annotated static size rather than sizeof(int*) in this case

by wren6991

8/2/2026 at 4:47:30 PM

It's a unary operator, kind of like ~ or !, which can apply to parenthesis (), until it meets a type, then the parenthesis are mandatory:

    int x;
    sizeof x;     // okay
    sizeof (x);   // okay
    sizeof int;   // not okay
    sizeof (int); // okay
It's a weird double rule to parse, but even worse, the strongest binding precedence typically doesn't like an alpha identifier at that point in the recursive descent, so you get weird rules like:

    read_prefix():
        is peak() '!': ...
        is peak() '~": ...
        is alpha(peak())
            maybe alpha is sizeof?
                wait, it wasn't sizeof? it was an identifier? long rewind
        is peak() '+': ...
Something like @ would've been a good pick for sizeof.

\ramble on

(actually, better yet, it should've been used instead of & for taking the address). Imagine:

    int x;
    int* p = @x;
\ramble off

by glouwbug

8/3/2026 at 7:46:12 AM

Ive actually toyed with the idea of having @ as a pointer dereference. It seems to make sense: you want to know what is at the address stored in p.

by atiedebee

8/2/2026 at 3:34:34 PM

I feel like what you struggle with is expression parsing, not sizeof itself?

by high_na_euv

8/2/2026 at 2:52:37 PM

Wait, they added a new operator and didn't fix that parsing stupidity by always requiring parentheses?

by inigyou

8/2/2026 at 5:16:34 PM

I assume that there would be a zillion of legacy C source files that would be broken by such a change.

by adrian_b

8/2/2026 at 5:40:27 PM

There are no legacy C source files using _Countof.

by inigyou

8/2/2026 at 6:43:59 PM

That was discussed, but consistency with sizeof was considered more important. And if you figured out how to parse sizeof, parsing countof is not an additional burden.

by uecker