首页 > 文章列表 > What is the use of `%p` in printf in C?

What is the use of `%p` in printf in C?

370 2023-08-20

在C语言中,我们已经见过不同的格式说明符。这里我们将看到另一个称为%p的格式说明符。它用于打印指针类型的数据。让我们看一个示例以更好地理解。

示例

#include<stdio.h>
main() {
   int x = 50;
   int *ptr = &x;
   printf("The address is: %p, the value is %d", ptr, *ptr);
}

输出

The address is: 000000000022FE44, the value is 50