Revision as of 21:20, 31 August 2011 editAvicBot (talk | contribs)Bots1,227,735 editsm Tagging uncategorized article. (Report error)← Previous edit | Revision as of 21:24, 4 September 2011 edit undoSebbe (talk | contribs)Extended confirmed users1,709 edits Categorizing article - You can help! + add {{unreferenced}}Next edit → | ||
Line 1: | Line 1: | ||
{{lowercase|title='''vwprintf'''}} | {{lowercase|title='''vwprintf'''}} | ||
{{unreferenced}} | |||
<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 wchar_t *format, va_list args);''' |
'''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. | 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. | ||
] | |||
{{Uncategorized|date=August 2011|bot=AvicBot}} | |||
] |
Revision as of 21:24, 4 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 (Learn how and when to remove this message) |
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.