1.
We’ll learn about libraries next! You have already seen some libraries, amongst them the mathematics library 
 math.
Please explore some of the functions in the standard C math library (you’ll need to search the internet). In particular, what is the difference between the two functions 
atan() and atan2()?
- Both find the inverse tangent, butatan2()is able to place it into the correct quadrant.
- Correct
- Both find the inverse tangent, butatan2()squares the result.
- Not quite. Try again!
- Both find the inverse tangent, but one is in radians, the other in degrees.
- Not quite. Try again!
- Both find the inverse tangent, butatan2()first multiplies by 2.
- Not quite. Try again!


