Misplaced Pages

Vwprintf: Difference between revisions

Article snapshot taken from[REDACTED] with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 00:13, 19 September 2011 editDeepika.sirsath (talk | contribs)60 editsNo edit summary← Previous edit Revision as of 06:39, 19 September 2011 edit undoDeepika.sirsath (talk | contribs)60 editsNo edit summaryNext edit →
Line 1: Line 1:
{{lowercase|title='''vwprintf'''}} {{lowercase|title='''vwprintf'''}}
{{Unreferenced|date=September 2011}} {{Unreferenced|date=September 2011}}
<tt>''vwprintf''</tt> is a ] function as defined in ] and it has function signature as <tt>''vwprintf''</tt> is a ] function as defined in ] and ] .It has function signature as
'''int vwprintf(const ] *format, va_list args);''' '''int vwprintf(const ] *format, va_list args);'''



Revision as of 06:39, 19 September 2011

This article does not cite any sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "Vwprintf" – news · newspapers · books · scholar · JSTOR (September 2011) (Learn how and when to remove this message)

vwprintf is a C standard library function as defined in stdio.h and wchar.h .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.

Categories:
Vwprintf: Difference between revisions Add topic