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!think!harvard!seismo!brl-tgr!tgr!lcc.niket@UCLA-LOCUS.ARPA From: lcc.niket@UCLA-LOCUS.ARPA (Niket K. Patwardhan) Newsgroups: net.lang.c Subject: Re: c programming style Message-ID: <13@brl-tgr.ARPA> Date: Fri, 19-Jul-85 07:12:01 EDT Article-I.D.: brl-tgr.13 Posted: Fri Jul 19 07:12:01 1985 Date-Received: Sat, 20-Jul-85 12:34:32 EDT Sender: news@brl-tgr.ARPA Lines: 11 I am not sure whether you implied C does not interpret argv = argv + n as argv = argv + n*sizeof(argv *) (treating everything like an int). According to the reference manual, adding an int to a pointer (however you do it) adds enough to the pointer that the new value points to the object n elements away from the original object pointed to. Thus C does the same thing as DASL.