what is the return type of printf
Answers were Sorted based on User's Feedback
Answer / venkat
RETURN TYPE OF THE PRINTF IS NO.OF CHAACTERS SUCCESSFULLY
PRINTED/DISPLAYED
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / naresh
Return type of the printf is the no of characters printed.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sateesh
The return type of Printf in C is Integer i.e the number of
characters printed.
| Is This Answer Correct ? | 1 Yes | 1 No |
how to determine the complexity of an algorithm as log(n)
What is the c language function prototype?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is a node in c?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
where are auto variables stored? What are the characteristics of an auto variable?
How can we see the Expanded source code and compiled code for our source program in C?
question-how to run a c programme.
Why does the call char scanf work?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
What is clrscr ()?
Explain which function in c can be used to append a string to another string?