This is an old revision of this page, as edited by Ingaleashwini (talk | contribs) at 17:59, 29 August 2011 (←Created page with '{{lowercase|title='''vwprintf'''}} <tt>''vwprintf''</tt> is a C standard library function as defined in stdio.h and it has function signature as '''int vw...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 17:59, 29 August 2011 by Ingaleashwini (talk | contribs) (←Created page with '{{lowercase|title='''vwprintf'''}} <tt>''vwprintf''</tt> is a C standard library function as defined in stdio.h and it has function signature as '''int vw...')(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)vwprintf is a C standard library function as defined in stdio.h and it has function signature as
int vwprintf(const wchar_t *format, va_list args);.
The functioning of vwprintf is same as that of swprintf.The difference between both functions is that the argument list has been replaced by a pointer to a list of argument. vwprintf performs the wide character output to the string like stdout and stdout should not be byte oriented.