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
an integer constant must have atleast one a) character b) digit c) decimal point
How would perform Pattern Matching in C++?
Describe delete operator?
What is function prototyping? What are its advantages?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
What is pointer with example?
What is c++ hash?
How many standards of c++ are there?
Why are pointers used?
What is insertion sorting?
Explain the properties and principles of oop.
What is the role of copy constructor in copying of thrown objects?
How does code-bloating occur in c++?
What is object oriented programming (oop)?
What is istream c++?