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

Segmentation fault/runtime crash
10
Compiler time error
Undefined behavior

ANSWER DOWNLOAD EXAMIANS APP