Re: [cbm4linux-users] cbm4linux on Suse 8.2 & GCC 3.3
Brought to you by:
cbm4linux
From: Spiro T. <tri...@gm...> - 2003-04-15 12:54:27
|
Hello, Michael Klein wrote: > Are multi-line literals an error in gcc 3.3? (2.95 Doesn't complain at > all here, while 3.0 prints a deprecation warning) well, regardless of whether they are errors or not: Why use them? Something like a = "abc" "def" "ghi"; Works perfectly in ANSI-C and C++, is defined and is *exactly* the same as a = "abcdefghi"; So there's not need for something like this. On the other hand, Andreas' solutions as far from that good since it uses a new call to printf() for every line. Just my EUR 0.02, Spiro. |