Path: csiph.com!news.mixmin.net!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: Keith Thompson Newsgroups: comp.lang.c Subject: Re: Beginner....Decimal/Octal converter help Date: Wed, 14 Sep 2022 07:58:15 -0700 Organization: None to speak of Lines: 15 Message-ID: <87o7vigfzs.fsf@nosuchdomain.example.com> References: <8ffd982c-2e82-4caa-9256-ec17be2efe56n@googlegroups.com> <87zgf714zc.fsf@bsb.me.uk> <8735cy0wt4.fsf@bsb.me.uk> <87r10hzn19.fsf@bsb.me.uk> <87mtb4wq4f.fsf@bsb.me.uk> <875yhswfiv.fsf@bsb.me.uk> <87a673hzzj.fsf@nosuchdomain.example.com> MIME-Version: 1.0 Content-Type: text/plain Injection-Info: reader01.eternal-september.org; posting-host="8fc111422276ca8204b941f03dd9cf79"; logging-data="3161493"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19t+Rw7iv3o12nCHAMwPO3c" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) Cancel-Lock: sha1:7fSYoB8/yLuCtOenTd+g/nQLD3k= sha1:BvIYMe9AuBy4CfuLJUQNxuCPtqE= Xref: csiph.com comp.lang.c:167719 scott@slp53.sl.home (Scott Lurndal) writes: > David Brown writes: >>I too don't know of any C implementations that actually have extended >>integer types, > > Does GCC's __uint128_t/__int128_t count as an extended integer type? No, they're not documented as extended integer types, and they don't meet all the requirements. For example, 36893488147419103232 (2**65) is not a valid integer constant, and [u]intmax_t are 64 bits, not 128. -- Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com Working, but not speaking, for Philips void Void(void) { Void(); } /* The recursive call of the void */