Multiple Choices
(Choose 1 answer)
void test(float x)
What is the output of the following code?
{ x += 25;
printf(" Value inside the function: %.2f",x);
x += 25;
}
int main ()
{ float y;
v=100;
printf(" y = %.2f",y);
test(y);
printf(" y = %.2f",y);
return(0);
}
A.v=100
Value inside the function: 125
v=125
B. y=100.00
Value inside the function: 125.00
y=100.00
2.y=100.00
Value inside the function: 125.00 y=150.00