Computer Science, asked by shuyashkanswal, 4 hours ago

predict the output
#include <stdio.h>
void main()
{
char *p;
printf("%d, %d", sizeof(*p), sizeof(p));
}​

Answers

Answered by kaul84168
0

Answer:

output is

Explanation:

here

Similar questions