what is printf
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
Is the following code legal? struct a { int x; struct a b; }
What is c token?
how can i calculate mean,median,mode by using c program
How would you sort a linked list?
what is pointer
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
How variables are declared in c?
Write a Program to find whether the given number or string is palindrome.
What are the features of the c language?
write a program in c to print **** * * * * ****
Can a program have two main functions?