Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!think!harvard!seismo!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.ARPA (Doug Gwyn ) Newsgroups: net.lang,net.lang.c Subject: Re: structured assembler (BASIC) [Really: C builtin functions?] Message-ID: <2520@brl-smoke.ARPA> Date: Thu, 10-Apr-86 11:55:28 EST Article-I.D.: brl-smok.2520 Posted: Thu Apr 10 11:55:28 1986 Date-Received: Sat, 12-Apr-86 22:18:41 EST References: <443@3comvax.UUCP> <7900003@ztivax.UUCP> Reply-To: gwyn@brl.ARPA Organization: Ballistic Research Lab (BRL) Lines: 17 Xref: watmath net.lang:2338 net.lang.c:8526 In article <202@chronon.UUCP> eric@chronon.UUCP (Eric Black) writes: >Well, how about sizeof(foo)? > >It looks like a function invocation, and is known and understood >by the compiler... Rong. "sizeof" comes in two flavors: sizeof sizeof In the first case, the parentheses belong to the , not to the sizeof syntax; in the second case, surrounding the with parentheses is not usually necessary: int array[20]; ... sizeof array ...