

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below ?#include <studio.h>int main(){ extern int fun (float); int k; k = fun (5.74); printf ("%d n", k); return 0;} int fun (kk)float kk; { return ((int) kk); } |
A. | 3 |
B. | 5.74 |
C. | 0 |
D. | Error |
Answer» E. | |