C Programming
What will be the output of the following program?#includevoid main(){ int i = 10; void *p = &i; printf("%d\n", (int)*p);}

Undefined behavior
10
Compiler time error
Segmentation fault/runtime crash

ANSWER DOWNLOAD EXAMIANS APP