#include<stdio.h> int main() { char c1='d'; char a1='p'; char *p,*p2; p2=&a1; p=&c1; printf("%c\n",p); printf("%c\n",p2); return 0; }