Correct Answer: scanf("%f %lf", &a, &b);
Explanation:
To scan a double value, %lf is used as format specifier.
Therefore, the answer is scanf("%f %lf", &a, &b);