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

c 判断一个字符是否为空格

时间:2019-05-06 23:43:38      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:一个   type   判断   字符   div   int   clu   amp   enc   

 

#include <stdio.h>
#include <wctype.h>
int main ()
{
  wchar_t c;
  int i=0;
  wchar_t str[] = L"Example sentence to test iswblank\n";
  while (str[i])
  {
    c = str[i];
    if (iswblank(c)) c = L\n;
    putwchar (c);
    i++;
  }
  return 0;
}

输出

Ex
ample
sentence
to
test
iswblank

 

c 判断一个字符是否为空格

标签:一个   type   判断   字符   div   int   clu   amp   enc   

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

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