Как округлить от двойного до 2 десятичных знаков в С
value = round( value * 100.0 ) / 100.0; // 2 decimal places
value = round( value * 1000.0 ) / 1000.0; // 3 decimal places
Anxious Alligator