Thread: Colour

  1. #1
    Registered User
    Join Date
    Sep 2002
    Posts
    16

    Colour

    does anyone know how to use coloured text in Miracle C?

    i dont accually think it can be done

    thankz paul
    Shizzle Ma 'C' Whizzle's

  2. #2
    and the Hat of Clumsiness GanglyLamb's Avatar
    Join Date
    Oct 2002
    Location
    between photons and phonons
    Posts
    1,110
    ive written codes on borland c 4.5 and on dev-c c++ and also on
    lcc-win32 and every time it was a little bit different
    first it was
    Code:
    #include <conio.h>
    textcolor(1)
    cprintf("dunno what color");
    in bc 4.5 and in lcc win32 it was something like
    Code:
    #include conio.h
    int textcolor
    textcolor(BLUE)
    printf("this is in blue");
    so wut i suggest is to check the help content on textcoloring stuff
    (along with textbackground)...

  3. #3
    search color using the forum search function, the solution is there

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 03-24-2006, 08:36 PM
  2. Curses-- colour pairs
    By sufthingol in forum C++ Programming
    Replies: 0
    Last Post: 03-21-2005, 08:26 PM
  3. Replies: 5
    Last Post: 03-01-2003, 04:52 PM
  4. DirectDraw colour matching
    By Hunter2 in forum Game Programming
    Replies: 2
    Last Post: 12-10-2002, 02:17 PM
  5. Colour theory... (weird title)
    By Magos in forum C++ Programming
    Replies: 5
    Last Post: 11-25-2001, 04:16 PM