Answers for "absulute value function in c++"

C++
3

abs in c++

#include <cmath>
abs(number);
Ex: abs(-10) = |-10| = 10
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language