vperf/main.c
2021-07-17 10:25:21 +08:00

20 lines
287 B
C

/*
* main.c
* Copyright (C) 2021 light <light@lightdeMBP>
*
* Distributed under terms of the MIT license.
*/
#include<stdio.h>
#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;
}