Bro can post logarithm fuction in dev c++ plss post in next week
@bradsen4 жыл бұрын
Hi Mike, thanks for the video. What about the power function of two very large numbers? One number is at least 100 bits long. Are you able to do it using the boost library?
@practicecoach777 Жыл бұрын
Fantastic 🎶
@hewanlegesse3735 Жыл бұрын
I love your videos very clear
@adventuresinphysics50693 жыл бұрын
How is the pow() function in the cmath library implemented? Is it implemented this way?
@irenebonso69175 жыл бұрын
This helped a lot!! Thank youuuuuu
@anahdaniel52005 ай бұрын
I understand this concept but what if i want to raise a base by zero. how do i go about it.
@Robocat7544 жыл бұрын
I thought there is a special api for the exponent function. You should change your title to " for loop example" or something. But thanks anyway for your c++ tutorials.
@sheenpula36015 жыл бұрын
Helped a lot!
@sheenpula36015 жыл бұрын
Thanks!!
@SuperWubDub5 жыл бұрын
@@sheenpula3601 did you just have a convo with yourself? and like both comments you made?
@sultanicboy2051 Жыл бұрын
Awesome
@stacyhackney61002 жыл бұрын
Thank you
@prajinshankarkarthik80133 жыл бұрын
#include using namespace std; double exp(double num, int exponent) { double sum = 1; double sum2 = 1; if(exponent > 0) { for(int i = 1; i exponent; double ans = exp(number, exponent); cout