gpt4 book ai didi

c - 关于字符串的字符指针的说明

转载 作者:太空宇宙 更新时间:2023-11-04 01:22:54 24 4
gpt4 key购买 nike

大家好,我是编程新手。在下面的代码中,str 是一个指向字符的指针,因此 str 应该包含字符“h”的地址。因此 %p 应该用于打印该地址。但是我不明白 %s 是如何用于打印指针参数的。

    #include<stdio.h>

int main (){
char s[] = "hello";
char *str = s;
int a[] = {1, 2, 3, 4, 5};
int *b = a;
printf("%s\n", str); // I don't understand how this works ?
printf("%c\n", *str); // This statement makes sense
printf("%c\n", *(str + 1)); // This statement also makes sense.
printf("%p\n",str); // This prints the address of the pointer str. This too makes sense.
printf("%d\n",*b); // makes sense, is the same as the second print.
// printf("%d",b); // I don't understand why str pointer works but this gives a compile error
return 0;
}

最佳答案

char s[] = "hello";

声明一个名为 s 的零终止字符数组。和写一样

char s[6] = { 'h', 'e', 'l', 'l', 'o', '\0' };

如您所见,引号是简写。


char *str = s;

这声明 str 是一个指向字符的指针。然后它使 str 指向 s 中的第一个字符。也就是说,str包含了s中第一个字符的地址。


int a[] = {1, 2, 3, 4, 5};

声明一个整数数组。它将它们初始化为 1-5(含)的值。


int *b = a;

b 声明为指向 int 的指针。然后它使 b 指向 a 中的第一个 int。


printf("%s\n", str);

%s 说明符接受字符串中第一个字符的地址。 printf 然后从该地址开始,打印它看到的字符,直到看到末尾的 \0 字符。


printf("%c\n", *str);

这将打印 str 中的第一个字符。由于 str 指向一个字符(字符串中的第一个字符),因此 *str 应该获取所指向的字符(字符串中的第一个字符)。


printf("%c\n", *(str + 1));

这将打印 str 中的第二个字符。这是编写 str[1] 的漫长方法。这背后的逻辑是指针运算。如果str是一个字符的地址,那么str + 1就是数组中下一个字符的地址。由于 (str + 1) 是一个地址,它可能被取消引用。因此,* 获取数组第一个字符后的字符 1。


printf("%p\n",str);

%p 说明符需要一个指针,就像 %s 一样,但它做了其他事情。它不是打印字符串的内容,而是简单地打印指针包含的十六进制地址。


printf("%d\n",*b);

这将打印 b 指向的数组中的第一个 int。这相当于编写 b[0]


printf("%d",b);

bint *,而不是 int,这是 %d 所期望的。如果您尝试打印数组第一个元素的地址,说明符将是 %p,而不是 %d。此外,此行不应生成编译器错误。相反,它应该是运行时未定义的行为,因为编译器不知道什么是 printf 格式字符串。

关于c - 关于字符串的字符指针的说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37310631/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com