Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-24 22:01:06
#include <stdio.h> #include <stdlib.h> #include <string.h> int search(char *p[], char* name); char * names[] = { "Herb", "Rex", "Dennis", "John", NULL }; int main(int argc, char *argv[]) { if(search(names, "Herb") != -1) printf("Herb is in list.\n"); if(search(names, "Mary") == -1) printf("Mary not found.\n"); system("pause"); return 0; } int search(char* p[], char* name) { register int t; for(t = 0; p[t]; ++t) if(!strcmp(p[t], name)) return t; return -1; }
上一篇:C语言例程42:二维指针
下一篇:C指针相关的资料
登录 注册