predict the output
#include <stdio.h>
void main()
{
char *p;
printf("%d, %d", sizeof(*p), sizeof(p));
}
Answers
Answered by
0
Answer:
output is
Explanation:
here
Similar questions