but in divide there is factorial of 3 or 4 or 5 but you are only taking 3 4 or 5 in denominator and adding in ans . i have not understood this part for exmple i=3 , numerator will be x*x*x but in denominator i=3 so x^3/3 there is but actually it should be x^3/3! 3 and 3! both are diff thing
@human1143 Жыл бұрын
I can't thank you enough my friend .... i'm studying in Russia and i hade this question in the class , the teacher tried to explain it to us but i did not understand the logic behind it nor the language (because i'm a forigner ) , but now it is clear .... thank you so much again and keep going ❤
@vaishu23_3 Жыл бұрын
Thank you bhaiya 🎉
@GulSher-v5c Жыл бұрын
❤
@annsprincess3944 Жыл бұрын
what does accuracy takes place in here?
@анонимный-е1в Жыл бұрын
Tysm 🛐
@anandpranav6396 Жыл бұрын
sir what changes should we make for sinx in this program apart from initialising ans =0 and temp =1.
@kallaalekhya85742 жыл бұрын
Why are we taking the power of x in float,why not in ok int?
thanks a lot man, other videos just show you how to do it but never really tell us why is that, in this video you just told us why and now I understand, thanks so much
@naziaali6422 жыл бұрын
Yr the screen is so blur
@anilkumarkarri39783 жыл бұрын
Well said sir....
@umargul56443 жыл бұрын
Well done 👏 ✔ 👍 👌 😀 🙌 👏 ✔
@anirbanghosh55553 жыл бұрын
amazing
@Shailendrakumar-ge5cf3 жыл бұрын
can you use dark background pls
@dynamo-_-59623 жыл бұрын
Just passed my lab test because of this! A hero 👑
@zxcvbnm30173 жыл бұрын
How to display page on right side of the links by click on each link
@shubhendubanerjee71793 жыл бұрын
You can also watch: kzbin.info/www/bejne/oYLWg5WfpNGafdE
@sukhmanjotkaur36983 жыл бұрын
👍👍
@Pi-zx3xo3 жыл бұрын
But why did you write temp=(temp *power)/I ...like if I want to find e^2 ..in reality it is equal to 1+2/1+4/2+ 8/(3×2) +16/(4×3×2) and so on..but according to this code, it would be 1+2/1+4/2+ 8/3...I mean there's no factorial below..rather it would be temp= temp*(power/i).
@adnanemezrag38092 жыл бұрын
same question that is weird
@vakhariyajay22243 жыл бұрын
Thank you very much 👍👍🔝🔝
@ramonpaulocaumban393 жыл бұрын
it really works!
@shwetawarghat95733 жыл бұрын
How to write a program for same problem but using function for factorial?
@nidhimaniyar87833 жыл бұрын
.
@akashchaurasia19873 жыл бұрын
Sir please make a program on this question also- Write a program to take an integet and a floating number ,find quotiont and remainder of an integer using division of 3 and multiply floating number by 4 .Print the number quotiont and remainder, product of floating point number or the arguement of a function
@shwethasuresh37023 жыл бұрын
1 2 3 4 5 6 7 8 9 10 11 12 13 could you help with this
@soustavnandy30433 жыл бұрын
Bad
@shreyapani38453 жыл бұрын
Can you do pattern printing with numbers?
@MahaLakshmi-sk1fk3 жыл бұрын
thank you sir .I can understand the logic clearly only from your video.
@arnabdutta46623 жыл бұрын
line no. 10 will be - for( i = 1 ; i < n ; i++ ) { because if we do <= then we are iterating one more than what we want Thanks me later :)
@mitsuhagd2 жыл бұрын
Can u explain
@historyinworld23253 жыл бұрын
Your one click can change my whole life 🙏😭🙏🙏🏿😭🙏🙏😭🙏🙏😭🙏🙏😭
@sauryakhadka93803 жыл бұрын
well explained
@manishm51743 жыл бұрын
Love you bro, thank you
@cs060_priyanshusahu93 жыл бұрын
Osmm video very helpful ❤️
@hasibrahman13603 жыл бұрын
That's the exact tutorial that i was looking for ............ awsome
@hasibrahman13603 жыл бұрын
That's the exact tutorial that i was looking for ............ awsome
@zombiestrange64753 жыл бұрын
I was looking for this, Thank you for the explanation!!
@saklinsk46183 жыл бұрын
Thank you sir. :)) #include <stdio.h> void main() { int row_number, element_number, row, space; printf("Enter the number of row : "); scanf("%d",&row); // outter loop for number of row for (row_number = 1; row_number <= row; row_number++) { for ( space = 1; space <= (row - row_number); space++) printf("\t"); for (element_number = 1; element_number <= row_number; element_number++) printf("%d\t\t",element_number); printf(" "); } }