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

Compiler time error
Undefined behavior
10
Segmentation fault/runtime crash

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
All of these
Acts before compilation
Takes care of macros
Takes care of conditional compilation

ANSWER DOWNLOAD EXAMIANS APP