What will be the output of the program (16-bit platform)?
#include
#include
int main()
{
int *p;
p = (int *)malloc(20);
printf("%d\n", sizeof(p));
free(p);
return 0;
}
Answer: B
No answer description available for this question