What is the output of this program?
#include<stdio.h>
#inlcude<stdlib.h>
int main()
{
int *ptr;
double *ptr;
printf("%d\n",sizeof(ptr));
return 0;
}
#include<stdio.h>
#inlcude<stdlib.h>
int main()
{
int *ptr;
double *ptr;
printf("%d\n",sizeof(ptr));
return 0;
}A. 4
B. 8
C. the compiler will give the error
D. segmentaion fault
Answer: Option C

Join The Discussion