answersLogoWhite

0

It has to be some color and blue is nice.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Why the background colour of turbo c plus plus is blue?

I want my C++ program become interesting How can I change the color of background and color of font even size of font......... I will always use system("cls") to clear there screen..... so I want do C++ DOS into something we call presentation like powerpoint Haha........ Any tutorial? That all Thank you


How do you print to the screen in C plus plus?

printf();


How do you repair the black screen on turbo c?

With conio.h you can change the background color (function textbackground).


How do you write a C plus plus program that displays a pyramid of Xes on the screen using a for loop?

printf ("x")


How do you display del symbol on output screen using C Plus Plus?

The del character, #255, has no symbol. It is a non-printing character, so you cannot display it on the screen.


How do you go full screen in c plus plus?

Going full screen is not a C or C++ feature; it is an operating system feature. If you are running under MS Windows, you can go full screen in a console application by using <Alt><Enter>. Use <Alt><Enter> again to go back to windowed mode. You can also preset this in the shortcut.


What is the syntax of clear screen in c plus plus?

It must be done by a platform-dependent function, it's "clrscr" from conio.h in TurboC


How do you use bgi graphics of c plus plus on tft screen?

TFT or CRT doesn't make difference in using BGI graphics.


How do you draw a pixel of varying intensity on the screen using C Plus Plus?

C++ has nothing to do with pixels. Your question may be related with 'Windows programming' or 'DOS programming' or 'X Window System programming'.


How do you clear the screen in Dev C plus plus compiler?

Clearing screen in DEV C++ compiler :#includeint main(){system("cls");}OR: Permanent solution :-Paste the following text in "C:\Dev-Cpp\include\conio.h" of your system#include#includevoid clrscr(){system("cls");}Then you can use clrscr() as a normal built in function under !!!!!!!!!!!


Where on windows live messenger how do you make a coloured display name?

A button called "Format Codes" is beside the spot where you enter the name. If it's not there, you might need to get Messenger Plus! Live.[c=4]Your Name[/c] will make it red. Different numbers after the = sign will make other colors. If it still does not work after entering that, then you need Messenger Plus! Live.


How do you change the color of background of output screen in c program?

Platform-dependent. For TurboC use functions of header conio.h (use built-in help).