On Mon, 22 Mar 1999, [ISO-8859-1] Torbjørn Kristoffersen wrote:

> > This allocates precisely one byte of data for dbQuery. Try
> > 
> >     char dbQuery[1024];
> I replied to this mail too, but then I used char *dbQuery instead.
> What's the difference anyway?

char *dbQuery is an address variable.  char dbQuery[1024] is an array.
Read a book.

Reply via email to