Date: Tue, 27 Mar 2001 08:52:04 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Jack Klein cc: djgpp AT delorie DOT com Subject: Re: is this a bug? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 27 Mar 2001, Jack Klein wrote: > > scanf("%s", &string); > > The line above is incorrect, the name of a character array like string > is always converted to a pointer to its first element when passed to a > function. Just "string" is the address of string[0]. &string is a > pointer to an array of characters, not a pointer to char. This just > happens to work on most compilers "by accident". It works, and not by accident. But you are right: it's bad C.