โช Choose the correct option.
What is the output of the following C Program?
#include
void main()
{
char *p;
printf("%d %d ",sizeof(*p),sizeof(p));
}
#include
void main()
{
char *p;
printf("%d %d ",sizeof(*p),sizeof(p));
}