#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float cuberoot()
{
float a;
printf("Enter a number: \n");
scanf("%f", &a);
float crt;
crt = cbrt(a);
printf("Cube root of the given number is: %.4f", crt);
}
float main()
{
system("cls");
cuberoot();
return 0;
}
//........Coded by JAIDEEP JAMBLE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP