- 论坛徽章:
- 0
|
#include <stdio.h>
#include <string.h>
#define MAX 100
#define STOP "quit"
// Design and test a function that searches the string specified by the first function parameter for the first occurrence of a character specified by the second function parameter. Have the function return a pointer to the character if successful, and a null if the character is not found in the string. (This duplicates the way that the library strchr() function works.) Test the function in a complete program that uses a loop to provide input values for feeding to the function
char *my_strchr(char *,char);
void flush(void);
int main(void)
{
char s[MAX];
char ch;
char *pt;
puts("input the string (quit to quit):");
gets(s);
puts("input the character you want to find:");
scanf("%c",&ch);
while(flush(),strcmp(s,STOP)!=0)
{
pt=my_strchr(s,ch);
printf("The address of string is %p\n",s);
// printf("%p\n",pt);
if(pt)
printf("There is no %c in %s\n",ch,s);
else
printf("The first %c in %s's address is : %p\n",ch,s,pt);
puts("input the string (quit to quit):");
gets(s);
puts("input the character you want to find:");
scanf("%c",&ch);
}
puts("Bey!");
return 0;
}
void flush(void)
{
int ch;
while((ch=getchar()) && ch!='\n')
;
}
char *my_strchr(char *str,char ch)
{
while(*str)
{
if(*str==ch)
return str;
str++;
}
return NULL;
}
程序是接收一串字符串,和一个字符,找到字符在字符串中第一次出现的地址,没有返回NULL
结果:
[watch@pt10 exercise]$ ./4
input the string (quit to quit):
asdf
input the character you want to find:
d
The address of string is 0x7fffedb37420
0x7fffedb37422
There is no d in asdf
input the string (quit to quit):
字符d的地址都找到了,为什么提示没有找到呢?
是不是这句if(pt)的问题啊,新手求高手指点? |
|