Sujet : Re: question about linker
De : ike (at) *nospam* sdf.org (Ike Naar)
Groupes : comp.lang.cDate : 06. Dec 2024, 20:14:18
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <slrnvl6j8a.rlm.ike@iceland.freeshell.org>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
User-Agent : slrn/1.0.3 (Patched for libcanlock3) (NetBSD)
On 2024-12-06, Bart <
bc@freeuk.com> wrote:
My language:
>
println =a,=b # 13 characters, 0 shifted
>
(And that space is optional!) In C (assume the existence of stdio.h):
>
printf("A=%lld B=%f\n",a,b); # ~28 characters, 8 shifted
>
Enough said.
Looks like a cherry-picked example.
How would this (slightly modified) C statement be notated in your language:
printf("a:%lld b:%g\n",a,b);
?