sqrt - Finds square root in C

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

int main(void)
{
    printf("%f", sqrt(25.0));
}
// Output : 5.000