- 论坛徽章:
- 0
|
my code is like this:
- #include <stdio.h>
- int strlen(char*);
- int strcmp(char*s1, char*s2);
- int main(int argc, char**argv){
- char* s1;
- char* s2;
- int i,s1l,s2l;
- if(argc!=3){
- printf("Input error!");
- return 0;
- }
- s1l=strlen(argv[1]);
- s2l=strlen(argv[2]);
- printf("The lenght is %d and %d \n", s1l, s2l);
- s1=argv[1];
- s2=argv[2];
- i=strcmp(s1,s2);
- printf("the string is in %d", i);
- return 0;
- }
- int strcmp(char*s1, char*s2){
- int mark;
- for(int i=0; i<=s2l;i++){
- mark=0;
- for(int j=0;j<=s1l;j++)
- if(s1[j]==s2[i+j])mark++;
- if(mark==s1l)return (i-s1l);
- }
- return -1;
- }
- int strlen(char*s){
- int n;
- for(n=0;s[n]!='\0';n++){}
- return n;
- }
复制代码
I try to compare whether there's a sub string in the other one
but when I go to compile it by Gcc
I got ok
and when I run it, I got a "segementation fault!"
Some boby help me please |
|