mashallaha bht acha smj aaa jta ha ap ka leacture☺☺☺☺☺☺
@p0p43 жыл бұрын
you could enter ”count = 2” instead of ”count = 1” into the for() statement to skip the unnecessary first loop. Just something I noticed. The first loop simply just multiplies 1 with 1 after all.
@govindprajapat81719 ай бұрын
But if you insert 1 in it then ? Means factorial of one❤
@kulvinderkaur90212 жыл бұрын
Very nice teaching Thanks for teaching us
@chaitanya45252 жыл бұрын
Solved after 1 hour .thanks
@ZeyExC4 жыл бұрын
Sir, Thank you for your tutorial💙
@visheshchauhan6333 жыл бұрын
If i write 4 then how will i get the output like 4*3*2*1=24
@mritunjaysingh36492 жыл бұрын
4*3*2=4*6=24
@STENOLOVER1433 жыл бұрын
Wow helpful video sir thanks
@sobibhat60733 жыл бұрын
Thank you sir this is very usefull for me
@pexiepexie8682 жыл бұрын
I did 1k th like 🥳
@technotipDOTorg2 жыл бұрын
Thank you for the support. 🙏
@nitisharma550 Жыл бұрын
Thank you ❤
@princesszoni Жыл бұрын
How do I get it to print out all of the steps until it gets to the answer, for example 1: 1, 2: 2, 3: 6, the factorial of 4 is 24
@aswang4448 ай бұрын
#include int main() { int num, fact = 1; printf("Enter a number: "); scanf_s("%d", &num); for (int count = 1; count
@cmptr693 Жыл бұрын
It was helpful
@eyalsolman33493 жыл бұрын
Ty you saved me👍
@JumaSakush7 ай бұрын
1 write algorithm 2 Write (n=4 C program size 10 items. Use neutral language. Please help me with the video
@abhay-zw3yw Жыл бұрын
it doesnt work for large number , bcuz of size of integer . large number cant be store be integer data type
@aqeelsaifi52734 жыл бұрын
What's the name of c programming application?
@privateuser0473 жыл бұрын
i think it's --> CodeBlocks
@venumylavarapu14983 жыл бұрын
Dev c++ brother
@jotaroisdarius19182 жыл бұрын
codeblocks
@MigzMercado3 жыл бұрын
Why do 13 factorial and above become negative using this program?
@Mrspirit122 жыл бұрын
because here we are using int and we cannot store huge amount of data in int data type
@deepshikhameghwal6923 жыл бұрын
When I type a no in terminal ..nothing happens.
@sudipsarkar15122 жыл бұрын
What if i didn't mention, fact= 1... What would it take as default value... ??
@tapeshbhardwaj20562 жыл бұрын
Takes a garbage value, means any random number :)
@shalinichoudhary32593 жыл бұрын
Can any one explian why we use ???
@deepshikhameghwal6923 жыл бұрын
For a new line
@x_kunalz42528 ай бұрын
Another line usese the change of paragraph
@SharanappaSharanappah-h8i23 күн бұрын
Tq
@manabendrathakuria8830 Жыл бұрын
If we find the factorial of 0, then your program displays the factorial 0 but the answer is 1
@SamuelBelinga Жыл бұрын
Factorial of 0 is 1 And placing count from 0 It will drop all other factorials to zero too I think, or I'm not getting it
@NA7-DEVIL2 жыл бұрын
Sir op promote us also please in community's post
@MAbdullahHashmani8 ай бұрын
super
@maliktasaduq5609 Жыл бұрын
My code isn’t working
@mrjnutube2 жыл бұрын
What happens when you enter 0?
@tafikurrahman128 Жыл бұрын
Tumar program 2 howa nai karon 9,8 number bilakor factorial nulai.only 5,4,3,2 karone he program 2 right
@FREEFIRE-kp2kq10 ай бұрын
❤❤❤
@ilham23032 жыл бұрын
Is this program work for c++
@d_beats_012 жыл бұрын
Declaration terminated incorrectly 😄
@sauravbikramkadariya19363 жыл бұрын
It gives wrong answer from factorial of 8
@BlueCodesDev3 жыл бұрын
Bcoz it is a long numbers
@sania43102 жыл бұрын
@@BlueCodesDev do we hv to take long instead of int ?
@BlueCodesDev2 жыл бұрын
@@sania4310 yeah we should use "long int"
@sania43102 жыл бұрын
@@BlueCodesDev thx
@BlueCodesDev2 жыл бұрын
@@sania4310 did it work tho, I am not working on C much
@AmanChahal-rz6rs5 ай бұрын
Count- - hona chie
@ffm_Nitish7 ай бұрын
🎉
@zackcarl78613 жыл бұрын
Sir why assign 1 to fact
@p0p43 жыл бұрын
Because 0 multiplied by anything is 0
@narlavarun82202 жыл бұрын
Because if we don't assing an initial value it will take some garbage value as initial value
@deepchangani2004 Жыл бұрын
If we do i=n ; and i-- its possible?
@dhruvsapaliga6340 Жыл бұрын
Cause anything multiplied with 0 will be 0
@sagorbarua5775 Жыл бұрын
Anything multiple 0 is 0 so if u didn't put 1 then the code will not start it will give result 0 no matter what value u put