You are not logged in.
- Topics: Active | Unanswered
Pages:: 1
#1 2015-09-14 06:16:36
Function Calculates:
http://interviewquestionsanswers.org/quiz/C-Programming http://interviewquestionsanswers.org/qu … e-Function
Question:
Which of the following function calculates the square of 'x' in C?
Option A):
power(x, 2)
Option B):
pow(x, 2)
Option C):
sqr(x)
Option D):
pow(2, x)
Correct Answer is Option B):
pow(x, 2)
Failure is the first step towards seccess.
Offline
2015-09-14 06:16:36
- Advertisement
- Ads By Google
Re: Function Calculates:
Pages:: 1