I tried the system("COLOR 0a"); but it will change all the font color to that color. I also tried the textcolor(4) it gives me an error, the error message is textcolor is undeclared but I include the conio.h. What the problem?
NOTE: Im using windows 7 as an operating system
My codes
#include<stdio.h>
#include<conio.h>
int main()
{
textcolor(4);
cprintf("dkfjdk");
return 0;
}