tags:

views:

342

answers:

4

I creates program in c/c++ in turbo c . but i am facing problem is that i am not able to make it full screen in windows vista. please tell me how to do it?

A: 

I am also facing this problem. please tell me solution if u find it.

@rajeshrolen - You should convey something like this in a comment since it isn't an answer. SO doesn't function like a blog. BTW, you can click the star under the original question. This will put in your "favorites" list and you can check back at another time for further answers.
Duck
+3  A: 

Why are you still living in the Turbo era? Switch on to some better compiler.

gcc and MSVC++ Professional Edition are better ones.

On windows use IDEs like DevCpp or Code::Blocks, both support MinGw port of gcc.

Prasoon Saurav
can i create programs of c in MSVC++ studio?
Rajesh Rolen- DotNet Developer
Yes. Of course.
Alex
is it that, which comes with Visual Studio (which we use for vb6.0)?
Rajesh Rolen- DotNet Developer
when we install vb6.0 their also comes editor for VC++. are u talking about that?
Rajesh Rolen- DotNet Developer
Visual C++(VC++) has integrated compiler, editor and debugger, use it and enjoy.
Prasoon Saurav
+2  A: 

I'm afraid, but you can't reliable switch to full-screen text mode anymore.

Microsoft deprecated support for full-screen text mode in the graphic drivers. It's optional now and some drivers still support it, but most manufacturers don't bother implementing a deprecated feature.

The best thing you can do is to open a real GUI window and emulate the text-mode display. Obviously this will not work with DOS programs.


Edit: If you can't life without full-screen you can always install DOSBOX. It will execute Dos programs and can emulate fullscreen for you. However, your programs will run slower because DOSBOX is basically a emulator and has it's own performance overhead.

Nils Pipenbrinck
A: 

you can also use the new Express editions of Visual C++ 2008, it has an updated C++ compiler, which you can also use when trying to create C programs/apps. If you really wanna use Turbo compilers, you can set external tools on the Visual C++ 2008 Express, using the Turbo compilers as the external tools. That way you can compile your program with both MS C++ Compiler and your Turbo Compilers...

trace