p=hello;

  1. bijay_ps

    what is *&???

    I got this question from a study material for GATE exam. The code is as follows:#include<stdio.h> void main() { char *p; p="Hello"; printf("%c\n",*&*p); } someone please explain me what is this *&*p and what and how it does??
Top Bottom