Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-24 06:33:34
#include <stdio.h> #include <stdlib.h> int find_substr(char* s1, char* s2); int main(int argc, char *argv[]) { if(find_substr("C is fun", "is") != -1) printf("Substring is found.\n"); system("pause"); return 0; } int find_substr(char* s1, char* s2) { register int t; char *p, *p2; for(t = 0; s1[t]; t++) { p = &s1[t]; p2 = s2; while(*p2 && *p2 == *p) { p++; p2++; } if(! *p2) return t; } return -1; }
上一篇:C语言例程27:命令行變元
下一篇:LPC ARM 相关的几个问题
登录 注册