单项选择题
Suppose that we call scanf as follows:
scanf(“%d%f%d”, &i, &x, &j);
If the user enters:
10.8 9 3↙
What will be the values of i, x, and j after the call? (Assume that i and j are int variables and x is a float variable. ↙ is used to represent Enter key)
A、10 9 3
B、11 9 3
C、10.8 9 3
D、10 0.8 9