gpt4 book ai didi

c - 指针和 printf

转载 作者:行者123 更新时间:2023-11-30 18:19:05 28 4
gpt4 key购买 nike

我有以下用 C 编写的代码:

#include <stdio.h>
void fortune(char msg[]){
printf("Message reads: %s\n", msg);
printf("msg occupies %ld bytes.\n", sizeof(msg));
}

int main(){
char quote[]= "Cookies make you fat";
fortune(quote);
printf("The quote string is at %p\n", quote); //ONE
printf("The quote string is at %p\n", &quote); //TWO
}

我知道 int 变量,如果我们想获取它的地址,我们必须写:

printf("a is located at %p\n", &a);  not   printf("a is located at %p\n", a);

但是我想知道第一个版本和第二个版本之间的区别(请参阅代码片段中名为 ONE 和 TWO 的行)?

最佳答案

“ONE”和“TWO”中打印的地址是相同的。 quote 是一个数组,在 1 处,名称将转换为指向其第一个元素的指针,在 2 处 &quote 将具有与 quote< 不同的数据类型/strong>,但它仍然是指向数组 quote 开头的指针。

关于c - 指针和 printf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21220516/

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