Date: Tue, 3 Nov 1998 11:01:09 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Dim Zegebart cc: djgpp AT delorie DOT com Subject: Re: hope iam in the right place In-Reply-To: <363E9394.AF7E11C6@post.comstar.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Tue, 3 Nov 1998, Dim Zegebart wrote: > Actually, correct prototype for main looks like this - > int main(int argc,char *argv[]) No, it looks like this: int main (int argc, char **argv); I know, **argv and *argv[] are essentially the same, but the ANSI standard explicitly uses the former.