Sunday 20 April 2014

Print Syntax In Color Using C Language

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

CPRINTF Uing C

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