This video is made by #codeambition
REMEMBER THESE POINTS:-
textcolor( ) function is used to color the output text.With the help of this functio we can color the output screen . This function is found in the "conio.h" header file.In this function we need to pass the color name(must be in capital letter ) , to color the output text.
SYNTAX:-
textcolor( color_name );
When we use this function then we have to use "cprintf" function instead of "printf" function."cprintf" function is found in the "stdio.h" header file.
for e.g.:-
void main()
{
clrscr();
textcolor(RED);
cprintf("\nHELLO WORLD");
getch();
}
PLEASE LIKE , SHARE & SUBSCRIBE CODE AMBITION..