Xref: utzoo comp.sys.mac.programmer:16627 comp.sys.apple2:4484 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!know!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!haven!adm!smoke!gwyn From: gwyn@smoke.BRL.MIL (Doug Gwyn) Newsgroups: comp.sys.mac.programmer,comp.sys.apple2 Subject: Re: Q: MPW IIGS C 1.0.1 type sizes Keywords: C, MPW, GS Message-ID: <13531@smoke.BRL.MIL> Date: 10 Aug 90 20:56:23 GMT References: <734@dg.dg.com> Followup-To: comp.sys.mac.programmer Organization: U.S. Army Ballistic Research Laboratory, APG, MD. Lines: 11 In article <734@dg.dg.com> bkahn@archive.rtp.dg.com (Bruce Kahn) writes: >I have MPW IIGS C 1.0.1 and want to know the type sizes for all possible >C types (table at bottom) under MPW IIGS C. These are extremely easy to find out for yourself, empirically: #include main() { printf( "%d\n", (int)sizeof(double) ); return 0; } for example.