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.
This programming-language-related article is a stub. You can help Misplaced Pages by expanding it. |