the evaluation of pow(a,b,c) function is
Answers
Answered by
8
Answer:
it will show wrong input
Explanation:
pow function only accept two variables
Answered by
2
Syntax Error
- pow() function is an in- built function contained in <math.h> header file.
- Its basic syntax is: double pow ( double value 1 , double value 2 );
- That is the pow function can take up only two arguments.
- value 1 is considered as base and value 2 as the power.
- It returns a double value.
- Sending 3 arguments will result in compilation error.
Similar questions