Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site rtp47.UUCP Path: utzoo!watmath!clyde!bonnie!akgua!mcnc!rti-sel!rtp47!throopw From: throopw@rtp47.UUCP (Wayne Throop) Newsgroups: net.lang.c Subject: C array follies 2 Message-ID: <172@rtp47.UUCP> Date: Wed, 4-Sep-85 16:29:54 EDT Article-I.D.: rtp47.172 Posted: Wed Sep 4 16:29:54 1985 Date-Received: Sat, 7-Sep-85 07:22:04 EDT Organization: Data General, RTP, NC Lines: 14 It is interesting and amusing to observe the code generated by this function: void f( x, y, i ) int x[], (*y)[], i; { x[i] = 1; (*y)[i] = 2; } It brings home just how inexpensive an indirection can be, if you're carefull. :-) -- Wayne Throop at Data General, RTP, NC !mcnc!rti-sel!rtp47!throopw