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 |
Why flag is used in c?
What is c basic?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
Is it possible to run using programming C for Java Application?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16
a C prog to swap 2 no.s without using variables just an array?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What is the difference between struct and union in C?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why preprocessor should come before source code?