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

0.000000
10
None of these.
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on the first column
comes before the first executable statement
need not start on a new line
has # as the first character

ANSWER DOWNLOAD EXAMIANS APP