字符串比较问题
#include <stdio.h>void main(){
char s[]="9876",*p;
for(p=s;p<s+2;p++)
printf("%s\n",p);
}
请问在这个中p指向s 是9876 s+2是76 为什么p<s+2 为啥还会成立求解答下 首先它是个字符串,不是 int ...
而且它是个指针 c_cpp_python 发表于 2022-2-27 22:27
首先它是个字符串,不是 int ...
而且它是个指针
还是没太理解
1ytks 发表于 2022-2-28 10:20
还是没太理解
"为什么p<s+2 为啥还会成立"
为什么会不成立?
人造人 发表于 2022-2-28 11:37
"为什么p
他这个具体是怎么比较的呢p 9876
s+276
是按ASCII码比的吗?还是说这个“<”不是比较 本帖最后由 c_cpp_python 于 2022-2-28 12:49 编辑
1ytks 发表于 2022-2-28 10:20
还是没太理解
跑下面的代码,看看 s 到底是啥。。。
#include <stdio.h>
int main(){
char s[]="9876", *p;
for (int i = 0; i < 4; i++){
p = s + i;
printf("p now is pointing at : %p\n", p);
printf("the char at %p is %c\n", p, *p);
printf("string : %s\n\n", p);
}
return 0;
}
结果:
p now is pointing at : 000000000061FE0B
the char at 000000000061FE0B is 9
string : 9876
p now is pointing at : 000000000061FE0C
the char at 000000000061FE0C is 8
string : 876
p now is pointing at : 000000000061FE0D
the char at 000000000061FE0D is 7
string : 76
p now is pointing at : 000000000061FE0E
the char at 000000000061FE0E is 6
string : 6 1ytks 发表于 2022-2-28 12:45
他这个具体是怎么比较的呢p 9876
s+276
是按ASCII码比的吗?还是说这个“
按地址值比较
$ cat main.c
#include <stdio.h>
int main(void) {
char s[] = "9876";
printf("s: %p\n", s);
printf("s + 2: %p\n", s + 2);
return 0;
}
$ gcc-debug -o main main.c
$ ./main
s: 0x7ffd3e0d2fb0
s + 2: 0x7ffd3e0d2fb2
$ 本帖最后由 重源 于 2022-3-3 18:36 编辑
#include <stdio.h>
void main(){
// 定义字符数组,记住是字符,不具备数字大小特性,换成ABCD也ok;
// s数组的长度为5,双引号赋值自动帮你填充了'\0'结尾;可检验:printf("%d\n",sizeof(s));
// 同时定义指针p(地址);
char s[]="ABCD",*p;
printf("%d\n",sizeof(s));
// p=s,把数组s(首元素A的地址)赋值给p,
// 中间比较的是元素地址,数组内的地址是连续的,且依次增大;
// 第一次循环,p+0 < s+2, 首元素地址(p+0)开始,打印字符串ABCD到结束'\0';
// 第二次循环,p+1 < s+2, 第二个元素地址(p+1)开始,打印字符串BCD到结束'\0';
for(p=s;p<s+2;p++)
{
printf("%s\n",p);
printf("%p %p\n", s+2, p);
}
}
output:
5
ABCD
0061FF19 0061FF17
BCD
0061FF19 0061FF18
页:
[1]