Path: utzoo!attcan!uunet!husc6!mailrus!cornell!uw-beaver!uw-june!uw-entropy!dataio!bright From: bright@Data-IO.COM (Walter Bright) Newsgroups: comp.lang.c Subject: Re: Array indexing vs. pointers... Message-ID: <1703@dataio.Data-IO.COM> Date: 5 Oct 88 18:24:52 GMT References: <836@proxftl.UUCP> <3105@hubcap.UUCP> <1700@dataio.Data-IO.COM> <10332@s.ms.uky.edu> Reply-To: bright@dataio.Data-IO.COM (Walter Bright) Organization: Data I/O Corporation; Redmond, WA Lines: 14 In article <10332@s.ms.uky.edu> aash@ms.uky.edu ( Aashi Deacon ) writes: << o Try very hard to replace divides with other operations, as in: << x / 10 << with: << x * .1 << o See if some calculations can be done using integer math.