Home » Technical Questions » Programming

Point out the error, if any, in the following program. main() { int a = 10; void f(); a = f(); printf ( "\n %d", a ); } void f() { printf ( "\n Hi "); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!