Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
newline in constant
Remarks
A string constant was continued on a second line without either a backslash (\) or closing and opening double quotation marks (").
To break a string constant that is on two lines in the source file, do one of the following:
End the first line with the line-continuation character, a backslash.
Close the string on the first line with a double quotation mark and open the string on the next line with another quotation mark.
It is not sufficient to end the first line with \n, the escape sequence for embedding a newline character in a string constant.