what is printf

Answers were Sorted based on User's Feedback



what is printf..

Answer / chandramohan

printf is a predefined function in c language to print the
content on to the console.
it is comming from stdio.h library

Is This Answer Correct ?    20 Yes 1 No

what is printf..

Answer / naresh

printf is used to print the content to standard output.
this is a predefined function in C.It is included in stdio.h
library

Is This Answer Correct ?    7 Yes 1 No

what is printf..

Answer / azad sable, chiplun

yhe function printf() fall under the category of formatted
console I/O function. It allow us to to obtain the output
in specified form.

Is This Answer Correct ?    4 Yes 1 No

what is printf..

Answer / sujith shetty

Printf is a statement used to print the character number
etc..inside the double quote.it is stored in the library
function #include<stdio.h>.

Is This Answer Correct ?    0 Yes 0 No

what is printf..

Answer / manju

printf is used to print the function of the statement.&its
header file is <include.stdio.h>

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Interview Questions

What is the memory allocated by the following definition ? int (*x)();

2 Answers   ADITI,


What is the difference between typedef struct and struct?

0 Answers  


What is size of union in c?

0 Answers  


Why doesnt this code work?

0 Answers  


what is the difference between strcpy() and memcpy() function?

2 Answers  






prog for 1st five prime numbers in 2^x - 1

0 Answers  


how we can make 3d venturing graphics on outer interface

1 Answers   Microsoft,


what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error

9 Answers   Infosys,


Are there constructors in c?

0 Answers  


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

0 Answers  


C program to perform stack operation using singly linked list

3 Answers  


What is Conio.h ?

2 Answers   TCS,


Categories