Question: printf(10.10 = %.15lf , 10.10); printf(10.12 = %.15lf , 10.12); printf(10.15 = %.15lf , 10.15); Briefly explain why 10.12 doesn't display the value expected?
printf("10.10 = %.15lf ", 10.10);
printf("10.12 = %.15lf ", 10.12);
printf("10.15 = %.15lf ", 10.15);
Briefly explain why 10.12 doesn't display the value expected?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
