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