Path: csiph.com!eternal-september.org!feeder.eternal-september.org!nntp.eternal-september.org!.POSTED!not-for-mail From: Keith Thompson Newsgroups: comp.lang.c Subject: Re: Why is this happening? Date: Fri, 27 Mar 2026 20:41:46 -0700 Organization: None to speak of Lines: 26 Message-ID: <87bjg8wrgl.fsf@example.invalid> References: <10q5046$3ec1o$2@dont-email.me> <10q523v$3e865$1@dont-email.me> <10q7bug$7vod$1@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Sat, 28 Mar 2026 03:41:48 +0000 (UTC) Injection-Info: dont-email.me; posting-host="61b5d10707f16890c8f73d8d312319a0"; logging-data="332645"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19a4rE4UVo2GH0JTLeAU6uP" User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:g2EKvMPY+pEvML1CVg80Zy+0lNI= sha1:Gtd6cFtWxb7eUY+p6sjq9IIfNM0= Xref: csiph.com comp.lang.c:397238 Lawrence D’Oliveiro writes: > On Fri, 27 Mar 2026 10:15:23 +0100, Josef Möllers wrote: > >> diffns += 1000000000UL; > > Can you write > > diffns += 1_000_000_000UL; > > yet? Not in C. C23 introduces the apostrophe as a digit separator, copied from C++: diffns += 1'000'000'000UL; (I would have preferred underscores, but that would have conflicted with C++'s user-defined literals.) And of course any pre-C23 C compiler or any C compiler invoked in pre-C23 mode, will not recognize digit separators (unless it supports them as an extension). -- Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com void Void(void) { Void(); } /* The recursive call of the void */