How to find cube root without using library function in c programming? (Please ! Comment the code) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to find cube root without using library function in c programming? (Please ! Comment the code)

SAMPLE 1:- INPUT: 8 OUTPUT: 2 SAMPLE 2:- INPUT: 12 OUTPUT: 2.2894

5th Jan 2020, 4:10 AM
JITENDRA KUMAR
JITENDRA KUMAR - avatar
2 Answers
+ 3
JAY AJ Use cbrt() function or pow() function. for cbrt() follow this : https://www.programiz.com/c-programming/library-function/math.h/cbrt If you want to use pow function : double a=8; double cube_root=pow(b, 1.0/3); printf("%lf",cube_root); and for using either of them you'll need to include math.h header.
5th Jan 2020, 4:25 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
5th Jan 2020, 12:05 PM
Bilbo Baggins
Bilbo Baggins - avatar