首页  >  文章  >  后端开发  >  C 中 printf 中的“%p”有什么用?

C 中 printf 中的“%p”有什么用?

王林
王林转载
2023-08-27 21:29:022378浏览

C 中 printf 中的“%p”有什么用?

在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

以上是C 中 printf 中的“%p”有什么用?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除