Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site brl-tgr.ARPA Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!godot!harvard!seismo!brl-tgr!gwyn From: gwyn@brl-tgr.ARPA (Doug Gwyn) Newsgroups: net.lang.c Subject: Re: how is size of unsigned int defined? Message-ID: <6708@brl-tgr.ARPA> Date: Thu, 20-Dec-84 22:49:09 EST Article-I.D.: brl-tgr.6708 Posted: Thu Dec 20 22:49:09 1984 Date-Received: Sat, 22-Dec-84 02:16:42 EST References: <139@athena.UUCP> Distribution: net Organization: Ballistic Research Lab Lines: 5 > Does anyone know if unsigned int is defined to be the same size as > long int, or int? "unsigned" does not change the size of an integral type, so sizeof (unsigned int) == sizeof (int) .