当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ putwchar()用法及代码示例


C /C++中的putwchar()函数将一个宽字符写入标准输出(标准输出)。它在CPP库中定义。

用法:

wint_t putwchar(wchar_t ch)

参数:该函数接受一个强制性参数ch,该参数指定要写入的宽字符。


返回值:该函数返回两个值,如下所示:

  • 成功时,此函数返回ch表示的宽字符
  • 如果出现写入错误,它将返回WEOF并设置错误指示符

以下示例程序旨在说明上述函数:
程序1:

// C++ program to illustrate 
// putwchar() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    setlocale(LC_ALL, "en_US.UTF-8"); 
  
    // initiate the starting and 
    // the last alphabet 
    wchar_t first = L'\u05d0', last = L'\u05ea'; 
  
    wcout << L"All Hebrew Alphabets:"; 
  
    // print all the alphabets 
    for (wchar_t i = first; i <= last; i++) { 
        putwchar(i); 
        putwchar(' '); 
    } 
  
    return 0; 
}
输出:
All Hebrew Alphabets:א ×? ×? ×? ×? ×? ×? ×? ×? ×? ×? ×? ×? ם ×? ×? ×  ס ×¢ ×£ פ ×¥ צ ק ר ש ת

程序2:

// C++ program to illustrate the 
// putwchar() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    wchar_t wc; 
  
    // initializing the first 
    // and last alphabets 
    wchar_t first = 'A', last = 'Z'; 
  
    wcout << L"All English Alphabets:"; 
  
    // print all the alphabets from 
    // first to the last 
    for (wc = first; wc <= last; ++wc) { 
        putwchar(wc); 
        putwchar(' '); 
    } 
  
    return 0; 
}
输出:
All English Alphabets:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z


相关用法


注:本文由纯净天空筛选整理自AmanSrivastava1大神的英文原创作品 putwchar() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。