设int a,*p=&a;,通过指针变量p为a输入值的scanf语句是。
int a,*p=&a;定义指针变量p并初始化,使其指向整型变量a的首地址,即通过指针变量p为a输入值的语句可以为scanf(“%d”,p)。