USING C++'S BUILT-IN FUNCTIONS In this exercise, you use a browser, such as Google, to find information about a built-in function that belongs to the C++ function library and then answer the following questions:
1. What does the pow function do?
2. What data type does the pow function return?
3. Is the pow function overloaded? How do you know?
4. How many arguments does the pow function require?
5. What is the data type of the argument(s)?
6. What is the value of the variable named result? result = pow(3,6);
7. What is the value of the variable named result? result = pow(12, 3);