chen_chuang的ChinaUnix博客chenchuang.blog.chinaunix.net
chen_chuang
全部博文(87)
2016年(1)
2015年(3)
2014年(55)
2013年(13)
2012年(15)
tekkaman
leon_yu
xiebaoyo
garyybl
iteakey
yangyang
archange
vinton_z
seufy88
Buddy_Zh
asgzxy67
li53133
fruitcan
alterlee
分类: C/C++
2014-04-27 17:31:16
原型:extern int isdigit(int c); 用法:#include 功能:判断字符c是否为数字 说明:当c为数字0-9时,返回非零值,否则返回零。 举例: // isdigit.c #include #include main() { int c; clrscr(); // clear screen c='a'; printf("%c:%s\n",c,isdigit(c)?"yes":"no"); c='9'; printf("%c:%s\n",c,isdigit(c)?"yes":"no"); c='*'; printf("%c:%s\n",c,isdigit(c)?"yes":"no"); getchar(); return 0; }
原文地址:
上一篇:计算字符串数组有多少个字符串
下一篇:短信模块开发 tpdu格式(一)
登录 注册