From: "Robert L." Newsgroups: comp.os.msdos.djgpp References: Subject: Re: foreign char ( almost corect ) Lines: 29 X-Newsreader: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Message-ID: Date: Sat, 25 Mar 2000 15:24:56 GMT NNTP-Posting-Host: 216.209.203.70 X-Trace: news20.bellglobal.com 953997896 216.209.203.70 (Sat, 25 Mar 2000 10:24:56 EST) NNTP-Posting-Date: Sat, 25 Mar 2000 10:24:56 EST Organization: Sympatico To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Now cout<<"\x90"; work well. But cout<<"\x90crivez"; // écrivez == write doesn't work, it say the same error ( escape secquence out of range ) if i do cout<<"\x90"<<"crivez"; it work as it should, but i don't want to use this line. I even do cout<<"\x090crivez", but the same error appear. Robert L. a écrit dans le message ... >Hi, >i can't write char with accent ( é à ê ) using djgpp. >it's certainly an ASCII setting i haven't see. >i have try \x90 ( É ) but it's not this char djgpp output. >( cout<<"\x90"; ) >And with this char, the warning >escape sequence out of range of character > >Thanks. > > >