编程题:指向变量的指针变量编程
#include<stdio.h>ide
void main()指针
{it
int a,b;io
int *p,*q;class
a=3;b=5;变量
p=&a;q=&b;im
printf("%d,%d\n",*p,*q);margin
}img