码迷,mamicode.com
首页 > 其他好文 > 详细

c 判断是否为非控制字符

时间:2019-05-07 01:35:19      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:++   bsp   str   first   return   cond   char   int   字符   

 

#include <stdio.h>
#include <wctype.h>
int main ()
{
  int i=0;
  wchar_t str[] = L"first line \n second line \n";
  while (!iswcntrl(str[i]))
  {
    putwchar (str[i]);
    i++;
  }
  return 0;
}

输出

first line

 

c 判断是否为非控制字符

标签:++   bsp   str   first   return   cond   char   int   字符   

原文地址:https://www.cnblogs.com/sea-stream/p/10823016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!