how to make any answer positive in c code example
Example: c++ how to make a negative float positive
float f{-0.27452};
std::cout << fabs(f) << std::endl; // 0.27452
float f{-0.27452};
std::cout << fabs(f) << std::endl; // 0.27452