Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 The following program reports an error on compilation. #include<stdio.h> int main() { float i=10, j; void k; k=&i; j=k; printf("%f\n", j); return 0; } ?->(Show Answer!)
1. The following program reports an error on compilation. #include<stdio.h> int main() { float i=10, j; void k; k=&i; j=k; printf("%f\n", j); return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.02 pm
This program will NOT report any error. (Tested in Turbo C under DOS and GCC under Linux)
The output: 10.000000