Sample Exercise: Square Root Program
1. Display the square root of two numbers provided as input data (first and second) and the square root of their sum
2. To do so, it must call the C functions sqrt three times: for the first two calls, the function arguments are variables (first and second), the third call shows that a function argument can also be an expression (first + second)
3. For all three calls, the result returned by function sqrt is assigned to a variable
4. Because the definition of the standard sqrt function is found in the standard math library, the program begins with an additional #include directive (math.h)