From: "Martin Peach" Newsgroups: comp.os.msdos.djgpp References: Subject: Re: foreign char Lines: 17 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Message-ID: Date: Wed, 22 Mar 2000 16:40:06 -0500 NNTP-Posting-Host: 24.200.47.104 X-Complaints-To: abuse AT videotron DOT net X-Trace: weber.videotron.net 953761129 24.200.47.104 (Wed, 22 Mar 2000 16:38:49 EST) NNTP-Posting-Date: Wed, 22 Mar 2000 16:38:49 EST To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Robert L. wrote in message news:lD9C4.1556$1C2 DOT 146525 AT news20 DOT bellglobal DOT com... > 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 ASCII only goes up to 0x7F. The A in ASCII stands for American. Americans don't know about accents, at least not back in the days of teletype machines..:(. There are no accented characters in ASCII. Unamerican characters may be represented by multi-byte sequences, hence they are out of range of char, which is one byte long. \/\/\/*= Martin