C Program To Find Factorial of a Number using For Loop

  Рет қаралды 219,488

Technotip

Technotip

Күн бұрын

Пікірлер
@eshakhan2021
@eshakhan2021 2 жыл бұрын
mashallaha bht acha smj aaa jta ha ap ka leacture☺☺☺☺☺☺
@p0p4
@p0p4 3 жыл бұрын
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.
@govindprajapat8171
@govindprajapat8171 9 ай бұрын
But if you insert 1 in it then ? Means factorial of one❤
@kulvinderkaur9021
@kulvinderkaur9021 2 жыл бұрын
Very nice teaching Thanks for teaching us
@chaitanya4525
@chaitanya4525 2 жыл бұрын
Solved after 1 hour .thanks
@ZeyExC
@ZeyExC 4 жыл бұрын
Sir, Thank you for your tutorial💙
@visheshchauhan633
@visheshchauhan633 3 жыл бұрын
If i write 4 then how will i get the output like 4*3*2*1=24
@mritunjaysingh3649
@mritunjaysingh3649 2 жыл бұрын
4*3*2=4*6=24
@STENOLOVER143
@STENOLOVER143 3 жыл бұрын
Wow helpful video sir thanks
@sobibhat6073
@sobibhat6073 3 жыл бұрын
Thank you sir this is very usefull for me
@pexiepexie868
@pexiepexie868 2 жыл бұрын
I did 1k th like 🥳
@technotipDOTorg
@technotipDOTorg 2 жыл бұрын
Thank you for the support. 🙏
@nitisharma550
@nitisharma550 Жыл бұрын
Thank you ❤
@princesszoni
@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
@aswang444
@aswang444 8 ай бұрын
#include int main() { int num, fact = 1; printf("Enter a number: "); scanf_s("%d", &num); for (int count = 1; count
@cmptr693
@cmptr693 Жыл бұрын
It was helpful
@eyalsolman3349
@eyalsolman3349 3 жыл бұрын
Ty you saved me👍
@JumaSakush
@JumaSakush 7 ай бұрын
1 write algorithm 2 Write (n=4 C program size 10 items. Use neutral language. Please help me with the video
@abhay-zw3yw
@abhay-zw3yw Жыл бұрын
it doesnt work for large number , bcuz of size of integer . large number cant be store be integer data type
@aqeelsaifi5273
@aqeelsaifi5273 4 жыл бұрын
What's the name of c programming application?
@privateuser047
@privateuser047 3 жыл бұрын
i think it's --> CodeBlocks
@venumylavarapu1498
@venumylavarapu1498 3 жыл бұрын
Dev c++ brother
@jotaroisdarius1918
@jotaroisdarius1918 2 жыл бұрын
codeblocks
@MigzMercado
@MigzMercado 3 жыл бұрын
Why do 13 factorial and above become negative using this program?
@Mrspirit12
@Mrspirit12 2 жыл бұрын
because here we are using int and we cannot store huge amount of data in int data type
@deepshikhameghwal692
@deepshikhameghwal692 3 жыл бұрын
When I type a no in terminal ..nothing happens.
@sudipsarkar1512
@sudipsarkar1512 2 жыл бұрын
What if i didn't mention, fact= 1... What would it take as default value... ??
@tapeshbhardwaj2056
@tapeshbhardwaj2056 2 жыл бұрын
Takes a garbage value, means any random number :)
@shalinichoudhary3259
@shalinichoudhary3259 3 жыл бұрын
Can any one explian why we use ???
@deepshikhameghwal692
@deepshikhameghwal692 3 жыл бұрын
For a new line
@x_kunalz4252
@x_kunalz4252 8 ай бұрын
Another line usese the change of paragraph
@SharanappaSharanappah-h8i
@SharanappaSharanappah-h8i 23 күн бұрын
Tq
@manabendrathakuria8830
@manabendrathakuria8830 Жыл бұрын
If we find the factorial of 0, then your program displays the factorial 0 but the answer is 1
@SamuelBelinga
@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-DEVIL
@NA7-DEVIL 2 жыл бұрын
Sir op promote us also please in community's post
@MAbdullahHashmani
@MAbdullahHashmani 8 ай бұрын
super
@maliktasaduq5609
@maliktasaduq5609 Жыл бұрын
My code isn’t working
@mrjnutube
@mrjnutube 2 жыл бұрын
What happens when you enter 0?
@tafikurrahman128
@tafikurrahman128 Жыл бұрын
Tumar program 2 howa nai karon 9,8 number bilakor factorial nulai.only 5,4,3,2 karone he program 2 right
@FREEFIRE-kp2kq
@FREEFIRE-kp2kq 10 ай бұрын
❤❤❤
@ilham2303
@ilham2303 2 жыл бұрын
Is this program work for c++
@d_beats_01
@d_beats_01 2 жыл бұрын
Declaration terminated incorrectly 😄
@sauravbikramkadariya1936
@sauravbikramkadariya1936 3 жыл бұрын
It gives wrong answer from factorial of 8
@BlueCodesDev
@BlueCodesDev 3 жыл бұрын
Bcoz it is a long numbers
@sania4310
@sania4310 2 жыл бұрын
@@BlueCodesDev do we hv to take long instead of int ?
@BlueCodesDev
@BlueCodesDev 2 жыл бұрын
@@sania4310 yeah we should use "long int"
@sania4310
@sania4310 2 жыл бұрын
@@BlueCodesDev thx
@BlueCodesDev
@BlueCodesDev 2 жыл бұрын
@@sania4310 did it work tho, I am not working on C much
@AmanChahal-rz6rs
@AmanChahal-rz6rs 5 ай бұрын
Count- - hona chie
@ffm_Nitish
@ffm_Nitish 7 ай бұрын
🎉
@zackcarl7861
@zackcarl7861 3 жыл бұрын
Sir why assign 1 to fact
@p0p4
@p0p4 3 жыл бұрын
Because 0 multiplied by anything is 0
@narlavarun8220
@narlavarun8220 2 жыл бұрын
Because if we don't assing an initial value it will take some garbage value as initial value
@deepchangani2004
@deepchangani2004 Жыл бұрын
If we do i=n ; and i-- its possible?
@dhruvsapaliga6340
@dhruvsapaliga6340 Жыл бұрын
Cause anything multiplied with 0 will be 0
@sagorbarua5775
@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
@hasapro4954
@hasapro4954 3 жыл бұрын
ok
@adilpanda624
@adilpanda624 2 жыл бұрын
Urdu ma batao
@GkQUestionsss
@GkQUestionsss 2 ай бұрын
bkl
C Program To Find Factorial of a Number using Recursion
10:24
Technotip
Рет қаралды 46 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
C_43 Need of Nested Loops in C | Nested For loop in C
18:31
Jenny's Lectures CS IT
Рет қаралды 660 М.
C++ Program to find the Factorial of a Number using For Loop
8:33
Example Program
Рет қаралды 119 М.
you will never ask about pointers again after watching this video
8:03
C Programming - 12 - while loop example (factorial of a number)
7:36
C Program To Find Factorial of a Number using Function
4:38
Technotip
Рет қаралды 44 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 661 М.
C Programming Tutorial for Beginners
3:46:13
freeCodeCamp.org
Рет қаралды 16 МЛН
reverse of a number in c|c program to print reverse of a number
11:18
Sudhakar Atchala
Рет қаралды 101 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН