float x, y, z;
scanf (“%f %f”, &x, &y);

If input st

Loading

โœช Choose the correct option.

float x, y, z;
scanf (“%f %f”, &x, &y);

If input stream contains “4.2 3 2.3 …”
What will x and y contain after scanf?

A. 4.2, 3.0
B. 4.2, 2.3
C. 4.2 2.0
D. None of the above