answersLogoWhite

0

How can print screen output in borland c plus plus?

Updated: 8/17/2019
User Avatar

Wiki User

9y ago

Best Answer

Redirect the output to a file via the command line. Print the file.

For example, if the program is named foo.exe, the output can be redirected to a file named foo.txt with the following command:

foo.exe > foo.txt

Everything sent to std::cout by the program will now be sent to the file instead. Everything sent to std::cerr will be displayed on screen as normal.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can print screen output in borland c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you display an exponential power symbol on the output screen using Borland C Plus?

Use the ^ (Shift 6) character usually called the Carrat Symbol.


How do you display the square root symbol on the output screen using Borland C Plus Plus?

Its Unicode value is 221A according to System tool Character map Advanced view Unicode subrange Math operators. But I haven't done C in awhile, so I don't know how to or if you can. ASCII value of root symbol is 251. In C we can print this symbol by printing the character value as below printf("%c",251); this will print the root symbol


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

printf();


What is the object used to print information on the screen in C plus plus?

You are probably referring to the global std::cout object, however std::cout does not put information on a screen, it puts information into the standard console output device which can be redirected to any output device the user chooses (the screen, a file, a line-printer, the nul device, etc).


Who invented turbo c plus plus?

Borland Software Corporation.


Who develop the turbo c plus plus?

The company Borland developed Turbo C++.


Main meaning of turbo c plus plus?

Name of a compiler (and IDE) from Borland.


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 output multiple 's on a single line in c plus plus programming language?

its supposed to have an asterisk there before the 's but it wouldnt print it


What is turbo c plus plus?

Turbo C++ is Borland's integrated development environment (IDE).


What has the author Edmund W Faison written?

Edmund W. Faison has written: 'Borland C [plus plus] 4 object-oriented programming' 'Borland C++ 3 object-oriented programming' -- subject(s): Borland C++, C++ (Computer program language), Object-oriented programming (Computer science) 'BorlandC[plus plus] 4.5 object-oriented programming' -- subject(s): Borland C., C., Object-oriented programming (Computer science) 'Borland C++ 3.1 object-oriented programming' -- subject(s): Borland C++, C++ (Computer program language), Object-oriented programming (Computer science)


What is the use of header file graphics in c plus plus programming?

It has no use in C++ itself, it is only useful in Borland Turbo C++. It provides generic graphics support for Borland Turbo C++ applications.