changing text color in turbo c compiler

Hi there!!
i am unable to change color of text in turbo c compiler using textcolor() function…
M using 32-bit windows 7
pls help

  1. Stop using turbo C. Use visual studio, code blocks, dev c++, online compilers, LINUX(gcc) PLEASE!

  2. Try this if it helps

    #include <stdio.h>
    #include <conio.h>
    int main ()
    {
    textcolor ( YELLOW );
    cprintf (“Color Testing \n”);
    return 0;
    }