int main() {
float x = fun(2, 3);
printf("%f", x);
}
int fun(int x, float y) // Line 7
{
x = 20.9; //Line 9
return x;
}
int main() {
float x = fun(2, 3);
printf("%f", x);
}
int fun(int x, float y) // Line 7
{
x = 20.9; //Line 9
return x;
}
What will be the output of the above code?
Reveal answer
Fill a bubble to check yourself