What will be the output of the following program?
#include<stdio.h>
void main()
{
int i = 10;
void *p = &i;
printf("%d\n", (int)*p);
}
#include<stdio.h>
void main()
{
int i = 10;
void *p = &i;
printf("%d\n", (int)*p);
}
A. Compiler time error
B. Segmentation fault/runtime crash
C. 10
D. Undefined behavior
Answer: Option A
Solution (By Examveda Team)
p is pointer of type void.
*(int*)p it should be like this
if we typecat it into int pointer we can like
*(int*)p;//in printf
answer will be 10 if it is int *p =&i instead of void *p =&i.
Answer is 10,why should error here
y should return an error.here,we did type casting,so it will be rerurn regarding output.If we don't type casting means