Answer Posted / kishore
Printf is a Variadic function. Variadic functions are
functions which may take a variable number of arguments and
are declared with an ellipsis in place of the last
parameter.
int printf(char *, ...);
Uses Var_args to know the variables in the ...
In C these are defined in stdarg.h
Refer to this link http://en.wikipedia.org/wiki/Stdarg.h
Is This Answer Correct ? | 24 Yes | 1 No |
Post New Answer View All Answers
How much maximum can you allocate in a single call to malloc()?
Which operations are permitted on pointers?
Write a program to add three numbers in C++ utilizing classes.
When does a 'this' pointer get created?
How does work in c++?
Is dev c++ a good compiler?
How is data hiding achieved in c++?
Describe the role of the c++ in the tradeoff of safety vs. Usability?
What is the basic difference between C and C++?
What are the unique features of C++.
Describe linked list using C++ with an example.
What is iterator c++?
When to use “const” reference arguments in a function?
Difference between inline functions and macros?
Explain operator overloading.