20 lines
287 B
C
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;
|
|
}
|
|
|