Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!cmcl2!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.ARPA (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: 32bit = 16bit x 16bit Message-ID: <6575@brl-smoke.ARPA> Date: Mon, 19-Oct-87 08:06:17 EDT Article-I.D.: brl-smok.6575 Posted: Mon Oct 19 08:06:17 1987 Date-Received: Tue, 20-Oct-87 02:05:46 EDT References: <1912@gryphon.CTS.COM> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 8 In article <1912@gryphon.CTS.COM> mhatter@pnet02.CTS.COM (Patrick E. Hughes) writes: >Don't Use Ints Nonsense! Not only can you not avoid (int)s, which are the inherent type of several things in the language, but (int) is usually the fastest data type with 16 or more bits in any implementation. If you just need to hold a modest count, (int) is the best choice. Also note that many library functions require (int) arguments.