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 to declaring variables in c++?
What is difference between array and vector in c++?
Can you explicitly call a destructor on a local variable?
What is function prototyping?
How do I run c++?
Explain how to initialize a const member data.
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
When should we use multiple inheritance?
What are activex and ole?
What is object in c++ wikipedia?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
What is srand c++?
What does ctime() do?
Is eclipse good for c++?
Should you pass exceptions by value or by reference?