C hypot() Function
You are Here:
C hypot() Function
The hypot()
function returns the square root of the sum of squares of its arguments.
The calculation for this function is: a2 + b2 = c2.
This function is defined in <math.h> header file.
Example
C Compiler
#include <stdio.h>
#include <math.h>
int main()
{
printf("%lf\n", hypot(3, 4));
return 0;
}
Output
5.000000
Syntax
double hypot(double a, double b)
Parameter Values
Value | Type | Explanation |
---|---|---|
a | Required | Specifies a number representing coordinates. |
b | Required | Specifies a number representing coordinates. |
Return Value
Value | Explanation |
---|---|
Number | Returns the square root of the sum of squares of its arguments. |
Reminder
Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.
We are working to cover every Single Concept in C.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.