Help me with rounding
Original message was deleted


#include <stdio.h>
int main() {
double number = 14.0088;
double roundedNumber = round(number * 100.0) / 100.0;
printf("%.4f\n", roundedNumber); // Output: 14.0100
return 0;
}#include <stdio.h>
int main() {
double number = 14.0088;
printf("%.2f00\n", number); // Output: 14.0100
return 0;
}