Explain working of printf?

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


Please Help Members By Posting Answers For Below Questions

How much maximum can you allocate in a single call to malloc()?

836


Which operations are permitted on pointers?

738


Write a program to add three numbers in C++ utilizing classes.

825


When does a 'this' pointer get created?

814


How does work in c++?

810


Is dev c++ a good compiler?

701


How is data hiding achieved in c++?

770


Describe the role of the c++ in the tradeoff of safety vs. Usability?

936


What is the basic difference between C and C++?

817


What are the unique features of C++.

768


Describe linked list using C++ with an example.

844


What is iterator c++?

705


When to use “const” reference arguments in a function?

789


Difference between inline functions and macros?

754


Explain operator overloading.

802