#include<conio.h>
#include<stdio.h>
void yellow()
{
textcolor ( YELLOW );
cprintf ("YELLOW Color Testing \n");
}
void main ()
{
printf("This is BLUE COLOR");
blue();
}
#include<stdio.h>
void yellow()
{
textcolor ( YELLOW );
cprintf ("YELLOW Color Testing \n");
}
void main ()
{
printf("This is BLUE COLOR");
blue();
}