fputws函数
概要:
#include <stdio.h> #include <wchar.h> int fputws(const wchar_t * restrict s, FILE * restrict stream);
描述:
该函数将参数s指向的宽字符串写入参数stream指向的流,终止空宽字符不会被写入。
参数:
const wchar_t * restrict s
指向将要写入流的宽字符串的指针。
FILE * restrict stream
指向写入宽字符串的输出流的指针。
返回值:
如果调用成功,函数返回一个非负值。如果发生写入错误或者编码错误,函数返回EOF。
范例:
|
|
结果:
创建一个名为gch.txt的文件,并向其写入:
谁不会休息,谁就不会工作。
注:使用Visual Studio编译。
相关内容:
fputwc | 将宽字符写入输出流的函数。 |
putwc | 将宽字符写入输出流的函数。 |
putwchar | 将宽字符写入标准输出流的函数。 |