zhmfairy的ChinaUnix博客
zhmfairy
全部博文(42)
2017年(1)
2016年(41)
hfm_hone
草根老师
lxg_2022
mfkbpfqt
tomcodin
xiaoheng
sxlf_zww
Larpente
戏雨潇潇
小将123w
zuoweiyi
分类: C/C++
2016-01-20 15:38:47
原文地址:C语言实例66:查找函数 作者:hnrainll
#include <stdio.h> #include <stdlib.h> #include <ctype.h> char *alpha = "abcdefghikjklmnopqrstuvwxyz"; int comp(const void *ch, const void *s); int main(int argc, char *argv[]) { char ch; char *p; printf("Enter a character: "); ch = getchar(); ch = tolower(ch); p = (char *)bsearch(&ch, alpha, 26, 1, comp); if(p) printf("%c is in alphabet\n", *p); system("pause"); return 0; } int comp(const void *ch, const void *s) { return *(char *)ch - *(char *)s; }
上一篇:atof()函数实现
下一篇:linux守护进程及其创建
登录 注册