Misplaced Pages

Wprintf: 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 15:09, 9 September 2011 editGene93k (talk | contribs)Autopatrolled, Extended confirmed users, New page reviewers, Pending changes reviewers468,116 editsm added category & stub template← Previous edit Revision as of 00:08, 19 September 2011 edit undoDeepika.sirsath (talk | contribs)60 editsNo edit summaryNext edit →
Line 2: Line 2:
<tt>''wprintf''</tt> is a ] function as defined in ] and ]. <tt>''wprintf''</tt> is a ] function as defined in ] and ].
It has function signature as It has function signature as
'''int wprintf(const wchar_t *format,...);''' '''int wprintf(const ] *format,...);'''
The wprintf() writes output to stdout, the standard output stream. It uses ] lists. This function also functions like vprintf, vfprintf, vsprintf, vsnprintf, and vasprintf offer the ability for programmers to essentially create their own printf variants. The wprintf() writes output to stdout, the standard output stream. It uses ] lists. This function also functions like vprintf, vfprintf, vsprintf, vsnprintf, and vasprintf offer the ability for programmers to essentially create their own printf variants.



Revision as of 00:08, 19 September 2011

wprintf is a C standard library function as defined in stdio.h and wchar.h. It has function signature as

int wprintf(const wchar_t *format,...);

The wprintf() writes output to stdout, the standard output stream. It uses variable argument lists. This function also functions like vprintf, vfprintf, vsprintf, vsnprintf, and vasprintf offer the ability for programmers to essentially create their own printf variants.


Stub icon

This programming-language-related article is a stub. You can help Misplaced Pages by expanding it.

Categories:
Wprintf: Difference between revisions Add topic