textcolor function is used to change the color of drawing text in c programs. 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> #include<conio.h> main() { textcolor(RED); cprintf("C programming"); getch(); return 0; } C programming code for blinking text #include<stdio.h> #include<conio.h> main() { textcolor(MAGENTA+BLINK); cprintf("C programming"); getch(); return 0; } Note that we have used cprintf function instead of printf. This is because cprintf send formatted output to text window on screen and...
How to Mention All Facebook Friends in One Click 2014 Posted by : Deepak mehta Hello fans we was update many codes for get many Facebook service fast, Like these category we are including Best Tutorial for How to mention all your Facebook friends in one click, Facebook is the best platform where we can use our some best Tip and trick for ge t something more about this social site, Our Blog always trying to share something new about this social site, We was also share with you that a Facebook page in a single click with updated codes of 2014 and many more like these category, You can hatch our Label of one click tutorials. Code Or Script For mention all Facebook friends Using One click There are many Code Or Script For mention all your Facebook friends Using a single click, But mostly are most not working, We was also try many codes for this trick but nighty percentage are not working properly. After many search and test we found this script, Its full working and working ma...
Comments
Post a Comment