70,023
社区成员




#include <stdio.h>
int main()
{
char *s1 = "hello";
cahr *s2 = "world";
printf("%d\n", s1-s2);
return 0;
}
#include <stdio.h>
int main()
{
char *s1 = "hello world";
int t = int(strchr(s1, ' ') - s1);
printf("%d\n", t);
return 0;
}