#include<stdio.h>
void main()
{
int x = 44;
printf(“使用3种格式符输出一个整型变量的地址:\n”);
printf("%%p:%p\n",&x);
printf("%%x:%x\n",&x);
printf("%%X:%X\n",&x);
}