how to get absalute value of a number cpp code example
Example 1: abs in c++
[Mathematics] |x| = abs(x) [C++ Programming]
Example 2: abs in cpp
int a =4;
int b =5;
int ans = abs(a-b); //ALWAYS RETURN POSITIVE NUMBER.
[Mathematics] |x| = abs(x) [C++ Programming]
int a =4;
int b =5;
int ans = abs(a-b); //ALWAYS RETURN POSITIVE NUMBER.