From: Willie Victor Newsgroups: comp.os.msdos.djgpp Subject: Coloured text? Date: Sat, 25 Sep 1999 18:53:21 +0200 Organization: An Internet Solution Customer Lines: 14 Message-ID: <37ECFE01.CF294CD8@icon.co.za> NNTP-Posting-Host: c2-67-pta.dial-up.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.is.co.za 938278397 8759 196.34.158.195 (25 Sep 1999 16:53:17 GMT) X-Complaints-To: abuse AT is DOT co DOT za NNTP-Posting-Date: 25 Sep 1999 16:53:17 GMT X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Why don't I get coloured text output with the following? #include #include int main() { textmode(C80); clrscr(); textcolor(BLUE); printf("xxxxxxx"); return(0); }