編程題:指向變量的指針變量編程
#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