Latest C Aptitude Question SOLUTION: output?? main() { char *p; printf("%d %d ",sizeof(*p),sizeof(p)); } Answer: 1 2 Explanation: The sizeof() operator gives the number of bytes taken by its operand. P is a character