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 |
write a progam to display the factors of a given number and disply how many prime numbers are there?
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Write code for finding depth of tree
What is the difference between i++ and i+1 ?(in terms of memory)
what is the use of call back function in c?tell me with example
What is the difference between local variable and global variable in c?
What is Full Form of C and Why We use C
Write a program to print fibonacci series using recursion?
What is console in c language?