[gnu.g++] string concatenation

ken@CS.ROCHESTER.EDU (Ken Yap) (06/21/89)

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);
}