Dev C Change Font

Dec 17, 2016 IF any queries please comment below. Keep supporting us. Subscribe for more Hope you are enjoying click here for subscribe: https://www.youtube.com/channel.

Function textcolor is used to change the color of drawing text in C programsTurbo C compiler only.

What Does C Change Mean

Declaration: void textcolor(int color);
where color is an integer variable. For example, 0 means BLACK color, 1 means BLUE, 2 means GREEN and soon. You can also use write appropriate color instead of integer. For example,you can write textcolor(YELLOW); to change text color to YELLOW. But use colors in capital letters only.

C programming code to change text color

#include<stdio.h>

Jul 31, 2016  How To Change DEV C Font Style + Size (HACK PEDIA) It's weird for me guys because I actually didn't able to find out this option at the first time and then I had to googled about it. Print colored message with different fonts and sizes in C In C/C we can use graphics.h header file for creation of programs which uses graphical functions like creating different objects, setting the color of text, printing messages in different fonts and size, changing the background of our output console and much more.

#include<conio.h>

main()
{
textcolor(RED);
cprintf('C programming');

getch();
return0;
}

C programming code for blinking text

#include<stdio.h>

Dev C Change Font T Bold


#include<conio.h>

main()
{
textcolor(MAGENTA+BLINK);
cprintf('C programming');

Dev c change font t boldDev C Change Font

C-change Conversations

getch();
return0;
}

Change Font Size In Dev C

Note that we have used cprintf function instead of printf. This is because cprintf send formatted output to text window on screen and printf sends it to stdin.