📅  最后修改于: 2020-09-25 10:28:46             🧑  作者: Mango
iswprint() 函数在
int iswprint(wint_t ch);
iswprint() 函数检查ch是否可打印。默认情况下,以下字符是可打印的:
#include
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"Ĥĕllö\tĂll\nĦow are ŷou";
for (int i=0; i
运行该程序时,输出为:
Ĥĕllö Ăll Ħow are ŷou
这里, \t
和\n
是字符串中不可打印的字符 。