answersLogoWhite

0

printf();

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the use of print option in c plus plus?

C++ has no print option. The print option in your IDE allows you to print your C++ source code, thus giving you a "hard" copy of your code.


Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


C plus plus program to print number patterns?

bghjg


Do I need a C plus plus program to print PASCAL's triangle?

No.


Write a C plus plus function that print a triangle of stars?

Write a function that print a triangle of stars.


How print the string with double cot in c plus plus language?

console.wrikerle("""");


Can anyone give a logic in c plus plus to print something on screen using printf statement but without semicolon used after printf statement?

try to usecondition ? value if true : value if falseor: if (printf ("Hello")) {}


How you can store an image in C plus plus console project?

You can't embed a "real" picture into a console project, like a .JPEG or .PNG format picture. What you can do though, is convert the picture to ASCII characters and print the text to the screen.


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 can print screen output in borland c plus plus?

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.


Why is the background screen of c plus plus blue?

It has to be some color and blue is nice.


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).