There is a mistake in the following code. Add a statement in it to remove it.
main()
{
int a;
a = f (10, 3.14) ;
printf ( " %d ", a );
}
f (int aa, float bb)
{
return ( ( float ) aa + bb );
}5
980 5b5cc7dde4d2b419777515e4
Q: There is a mistake in the following code. Add a statement in it to remove it. main() { int a; a = f (10, 3.14) ; printf ( " %d ", a ); } f (int aa, float bb) { return ( ( float ) aa + bb ); }
- Show Answer
- Workspace
- Discuss