answersLogoWhite

0

Whoever said so, they were wrong. For sure "printf" can be used without any problem.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is printf in c plus plus programming?

printf is a function that prints formatted text to the standard output stream (stdout). To make use of it in C++, you must include cstdio or any file that includes cstdio. For more information, see related links.


Where can one learn more about printf?

Wikipedia offers a great article about printf. They even provide samples of coding that is used in programs. If further assistance is needed try the website C Plus Plus.


How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


How do you write a program to make a cross asterisk in c plus plus?

#include <iostream> int main() { printf( " *\n***\n *\n" ); return( 0 ); } Output: *****


Input output function in c plus plus?

input is the << operator and output is the >> operator


Write a Recursive Function in C plus plus?

void infinte (long l) { printf ("I will never stop #%ld\n", l); infinte (l+1); }


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

printf();


What is the only function all C plus plus programs must contain?

Every C plus plus program that is a main program must have the function 'main'.


Which function must all C plus plus programs contain?

An entry point, usually main().


Why is a main function used by Grady Booch in C plus plus?

All C++ programs require an entry point and the main function provides that entry point.


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")) {}


In PHP a null value plus a number value is equals to what result. example null plus 6 equals?

In php mathmatical operations treat null like 0, so any number plus null equals itself. For example #!/usr/local/bin/php printf ("%d\n", null+6); printf ("%d\n", 6+null); ?> output: 6 6