當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。