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

None of these.
Error
10
0.000000

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP