#include<stdio.h>
void main()
{
int a=7;
int b=7;
printf("%d",&a);
printf("\n%d",&b);
} 请问高手这样输出的是a,b的内存地址吗