From: "Betelgeuse" Newsgroups: comp.os.msdos.djgpp References: <8l4t52$66v$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> Subject: Re: special caracters !!!! Date: Wed, 19 Jul 2000 17:37:46 -0700 Lines: 38 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 NNTP-Posting-Host: 207.148.146.64 X-Original-NNTP-Posting-Host: 207.148.146.64 Message-ID: <39763de4_5@news.cadvision.com> X-Trace: 19 Jul 2000 17:46:44 -0700, 207.148.146.64 Organization: CADVision Development Corporation (http://www.cadvision.com/) X-Original-NNTP-Posting-Host: 204.50.1.43 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hi, Why are you shouting? (see subject) Do you mean characters? Do you want to print special characters on the screen? Do you want to print extended ASCII characters? - try "\x", for example, printf("\xE1"); for ß Do you want to print a character with an underscore? Do you want to print underlined characters? * I suspect this last one is what you want. In text mode, you can't print underlined characters, unless you load a custom text font into the vga card. If you want to, however, you can simply do this all in graphics mode, by printing your text with some routine, and drawing a line under it (which is largely how windows does it) Please be more specific, HTH - Betelgeuse "Florent" wrote in message news:8l4t52$66v$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE... > I would like to print on my screen some special caractere for short cut > ..... > > The caracteres are with an underscore ..... how can I do this ? > >