answersLogoWhite

0

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.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How can we write our name in C programming language without using printf?

You can use fputs() instead of printf().


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

printf();


Printf and scanf Operators in C and C plus plus?

No, they are functions. Operators are -> or ++or /=


What purpose do braces serve in C programming?

grouping statements. eg: if (i==2) printf ("i=="); printf ("2"); and if (i==2) { printf ("i=="); printf ("2"); } do different things, if i<>2


How do you print 0001 in C programming?

its quite simple using printf function


What is library function in C programming?

printf, fgets, strlen, malloc etc


Why study c plus plus programming?

we are using c plus plus programming for developing object oriented programing software.


C programming diamond shape for loops Problem and output sample is in the picture?

#include<stdio.h> main() { int i; for(i=1;i<=1;i++) { printf("*",i); } printf("\n"); for(i=1;i<=3;i++) { printf("*",i); } printf("\n"); for(i=1;i<=5;i++) { printf("*",i); } printf("\n"); for(i=1;i<=3;i++) { printf("*",i); } printf("\n"); for(i=1;i<=1;i++) { printf("*",i); } }


Differentiate C plus plus and Turbo C?

Turbo C is a software where C or C++ programming environment resides in.But C++ is itself a programming language.


What is the meaning of plus plus in c?

++a (plus plus a) is pre-incrementing operator to aa=10;printf("%d",++a); /* it will print 11 as ++a increment first a by 1 then prints it */printf("%d",a++); /*it will printf 10 as it is post _ increment operator , it prints the value a first then increment it by 1 */


Is c plus plus a modular programming?

No, but it does support modular programming through namespaces.


What are the two major types of programming languages in c plus plus?

Object oriented programming and structured programming.