Wednesday, 1 July 2020

HOW TO CHANGE COLOR IN C:

THE FOLLOWING CODE IS USED TO CHANGE THE COLOR OF THE OUTPUT IN THE OUTPUT SCREEN.

#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
text color(RED);
cprintf("Here is your color:\n");
getch();
return 0;
}

TYPE LIKE THIS:
CHANGING COLOR IN C



OUT PUT IS AS FOLLOWS:
OUT PUT OF CHANGING COLOR














No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...