/* * main.c * Copyright (C) 2021 light * * Distributed under terms of the MIT license. */ #include #include"./include/test.h" int main() { double b=25.0; double a=0.0; a=get_sqrt(b); printf("a is %lf, b is %lf\n",a,b); return 0; }