answersLogoWhite

0

How do you go full screen in c plus plus?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

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.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you go full screen in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

printf();


Why is the background screen of c plus plus blue?

It has to be some color and blue is nice.


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.


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 !!!!!!!!!!!


Which field specialization should I go for in Computer Programming and Analysis c plus plus VB.net C?

c++/VB.net C#/open source mobile data/java


What is b plus b plus b plus c plus c plus c plus c?

b+b+b+c+c+c+c =3b+4c


What is c plus c plus 2c plus c plus c equal?

c + c + 2c + c + c = 6c


How can you display a circle on computer screen with the help of c plus plus programming language?

You cannot. At least not with generic C++. Graphics are platform-dependent and therefore requires a suitable API and library for your specific platform and its hardware.