Redondeando el número de punto flotante a dos decimales en c
#include <iostream>
using namespace std;
int main()
{
float var = 37.66666;
// Directly print the number with .2f precision
printf("%.2f", var);
return 0;
}
Nishit Dua