Home » Technical Questions » Programming

What would be the output of the following program? main() { extern int fun ( float ); int a; a = fun ( 3. 14 ); printf ("%d", a); } int fun ( aa ) float aa ; { return ( (int) aa ); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!