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
Segmentation fault/runtime crash
Compiler time error

ANSWER DOWNLOAD EXAMIANS APP