Home » C Programming » Declarations and Initializations

What is the output of the program #include<stdio.h> int main() { extern int fun(float); int a; a = fun(3.14); printf("%d\n", a); return 0; } int fun(int aa) { return (int)++aa; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!