请输入您要查询的百科知识:

 

词条 swprintf
释义

函数简介

函数功能:把格式化的数据写到一个流中。

函数原型:

int swprintf(

wchar_t *buffer,

const wchar_t *format [,

argument]...

);(参见:MSDN)

所属库:在VC++6.0下可以使用stdio.h或者wchar.h

程序示例

由于wsprintf只能输出字符,字符串和整型数据,要输出任意类型应该用swprintf 。

// crt_swprintf.c

// wide character example

// also demonstrates swprintf returning error code

#include <stdio.h>

int main( void )

{

wchar_t buf[100];

int len = swprintf( buf,, L"%s", L"Hello world" );

printf( "wrote %d characters\", len );

len = swprintf( buf, L"%s", L"Hello\\xffff world" );

// swprintf fails because string contains WEOF (\\xffff)

printf( "wrote %d characters\", len );

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/24 1:31:01