C math.h functions tutorial example explained
#C #math.h #functions
double A = sqrt(9);
double B = pow(2, 4);
int C = round(3.14);
int D = ceil(3.14);
int E = floor(3.99);
double F = fabs(-100);
double G = log(3);
double H = sin(45);
double I = cos(45);
double J = tan(45);
printf("\n%lf", A);
return 0;
#C #math.h #functions
double A = sqrt(9);
double B = pow(2, 4);
int C = round(3.14);
int D = ceil(3.14);
int E = floor(3.99);
double F = fabs(-100);
double G = log(3);
double H = sin(45);
double I = cos(45);
double J = tan(45);
printf("\n%lf", A);
return 0;
- Category
- Bro Code
- Tags
- c math, math.h, c functions

Be the first to comment