Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

hypot - Calculates hypotenuse of right triangle in C

#include <math.h>
#include <stdio.h>

int main()
{

     int e;
     double H;

     H = hypotf(3, 4);
     printf("%f", H);
     return 0;
 }

Output:
Output : 5.0000