Getting a Code for C

Asked By 0 points N/A Posted on -
qa-featured

How can I change the window output in the C programming provided that I wish to make the window full screen without using its properties and just through codes?

SHARE
Answered By 40 points N/A #127274

Getting a Code for C

qa-featured

Hi there ,

I think you are having trouble with the C program and you want it not in windowed but in full screen mode .

After you compile and run the program the program always starts in full screen mode.

This problem only occurs if you build the file and the .exe version of the file is created. What you have to do is :-

1. Press alt + enter when in windowed mode to make it full screen. This is the easiest method i guess.Writing the code for making it full screen is not so easy , You need to rebuild and recompile the whole code.

2. DO the hard way . Do the whole program in Graphics mode. (Let me tell you this you need to replace the whole code from text format to graphics format)

include this header file #include<graphics.h>

Search in Google for the initialization of the graphics mode and other details because i cant tell that because its beyond what i can type. So it would be better if you read an already typed one.

My tip :- Just don't go for graphics mode , try my 1st method.

Good luck

Related Questions