0
Can someone explain this <cmath> line? I don't know how to get the result
x = (sqrt (25) <abs (-5) && sqrt(3) >sqrt(16));
3 Answers
+ 1
sqrt means square root, abs cuts off the minus in front of a number.
Does this help you to understand the line?
0
i don't understand the <X && Y> part
0
&& means that both sides of that need to be true.