Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!CS.ROCHESTER.EDU!ken From: ken@CS.ROCHESTER.EDU (Ken Yap) Newsgroups: gnu.g++ Subject: string concatenation Message-ID: <8906210151.AA10095@cedar.cs.rochester.edu> Date: 21 Jun 89 01:50:59 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 9 While playing with g++ the other night, I noticed that string literal concatenation a la ANSI C is supported. This is nifty but is it a feature that will be approved in a future C++ spec? main() { char *a = "hello " "world\n"; printf(a); }