Date: Mon, 17 Nov 1997 09:37:50 +0200 (IST) From: Eli Zaretskii To: Matthew Mastracci cc: djgpp AT delorie DOT com, Jose Luis Perandones Colino Subject: Re: Init string question In-Reply-To: <64odu1$mmc@ds2.acs.ucalgary.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sun, 16 Nov 1997, Matthew Mastracci wrote: > Easy. C can concatenate two string constants placed end-to-end without > any special operations. For instance: > > "blah" "foo" > > is equivalent to: > > "blahfoo" Please note that this is an ANSI C feature. Some older pre-ANSI compilers don't support it. (More precisely, it's the preprocessor that performs this concatenation, if it's supported.)