double fun(double res,int n){ int t=(int)(res*pow(10,n)+0.5); res=t*1.0/pow(10,n); return res; } printf("%.2lf",fun(res,2));