From: "Deadline" Newsgroups: comp.os.msdos.djgpp Subject: error : unknown escape sequence Date: Tue, 6 Mar 2001 15:12:43 -0000 Organization: Customer of Energis Squared Lines: 16 Message-ID: <982urm$kr3$1@newsg3.svr.pol.co.uk> NNTP-Posting-Host: modem-30.lanthanum.dialup.pol.co.uk X-Trace: newsg3.svr.pol.co.uk 983891638 21347 62.136.48.30 (6 Mar 2001 15:13:58 GMT) NNTP-Posting-Date: 6 Mar 2001 15:13:58 GMT X-Complaints-To: abuse AT theplanet DOT net X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hi have a look at the code below. rhide gives the error: "unknown escape sequence: `\' followed by char code 0 * 20" this code compiles ok in Borland tclite. It looks like the end of the line backslash may be the problem but what could I use to continue the next line if not \ ? #include void main(void) { int a,b,c,d,e; printf("\Numbers: %i\n %i\n %i\n %i\n\ %i",a,b,c,d,e); }