使用scanf()读取内存地址

要输入内存地址,请使用%p格式说明符。带有%pscanf()可以读取CPU定义的格式的地址。
例如,该程序输入一个地址,然后显示该内存地址的内容:

#include <stdio.h>

int main(void)
{
   char *p;

   printf("Enter an address: ");
   scanf("%p", &p);
   printf("Value at location %p is %c/n", p, *p);

   return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266509.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论