Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!security!genrad!grkermit!masscomp!clyde!floyd!harpo!seismo!hao!hplabs!sri-unix!buck@nrl-css From: buck%nrl-css@sri-unix.UUCP Newsgroups: net.unix Subject: argc[argv] Message-ID: <14456@sri-arpa.UUCP> Date: Thu, 8-Dec-83 21:34:59 EST Article-I.D.: sri-arpa.14456 Posted: Thu Dec 8 21:34:59 1983 Date-Received: Tue, 13-Dec-83 05:45:22 EST Lines: 7 From: Joe Buck As was pointed out, argc[argv] is the same as argv[argc], since the compiler translates it into *(argc+argv). The latter expression is clearer, obviously; it's just a pointer to the last argument on the command line, which seems like a useful construct.