26 May
2003
26 May
'03
14:01
Hi, I have a problem with sources that used to compile with previous versions of gcc: char[] = " Its a sample Of compiling a Char array"; It used to compile with previous version, now it complains with "no matching " ending found"(something like that). I managed to edit the source and changed to: char[] = "its a sample" "of compiling a" "char array"; This time, the compiler did not complain, but I don't know if it is the answer, and I can't modify lots of old source code. Is there any switch to pass the compiler so it recognizes this old behavior, and I can compile old code? Thanks in advance for any help...