使用strchr,strstr,strlen函数

strchr的实现:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char str1[20], c;
printf("输入字符串:\n");
gets(str1);
printf("输入一个字符:");
scanf("%c", &c);
printf("%s\n",strchr(str1,c));
system("pause");
return 0;
}
 
Strstr的实现:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char *str= "12345678904789568";
char *p;
p=strstr(str,"789");
printf("%s\n", p);
system("pause");
return 0;
}
 
Strlen的实现:
#include <stdio.h>
#include <string.h>
 
void main()
{
char *p="acbhkugl";
int len=strlen(p);
printf("%d\n",len);
}
结果:
8



你可能感兴趣的:(strstr,Strlen函数,使用strchr)