Latest C Aptitude Question SOLUTION: output?? main() { char *p; p="Hello"; printf("%c\n",*&*p); } A. H Explanation: * is a dereference operator & is a reference operator. They can be applied any number of times prov