Тёмный

Recursion in C with factorial program | C Programming in tamil | Logic First Tamil 

Logic First Tamil
Подписаться 192 тыс.
Просмотров 35 тыс.
50% 1

Recursion explained easily with factorial example. What happens in the background when a recursive call is made is explained in detail.
C programming playlist
• Introduction to C prog...
English channel link,
/ @logicfirst31

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 24   
@naveenkarthik2801
@naveenkarthik2801 2 года назад
I am a biology student but now studying mechanical engineering. I don't have any such a basic knowledge of programming. So, I feel very hard to understand the programmes and coding. After watching this video, I am very clear i. Recursion topic. Thanks
@thamizhsivagami3515
@thamizhsivagami3515 3 года назад
vera level explanation
@shanmugamadhavan184
@shanmugamadhavan184 3 года назад
Fantastic Mam...!!!! Great Job Thanks Lot
@LogicFirstTamil
@LogicFirstTamil 3 года назад
Please check other videos in the channel and also pls share with your friends.
@shanmugamadhavan184
@shanmugamadhavan184 3 года назад
@@LogicFirstTamil Defenetly Mam it's my pleasure 🥰
@தமிழ்படங்கள்-ழ6ட
@@LogicFirstTamil madam you have to use long keyword in instead of "int" in int fact (int n)
@nithyakiruba8219
@nithyakiruba8219 Год назад
Very clear explanation mam. Very very thank you mam
@kuttykutty6284
@kuttykutty6284 2 года назад
Explaining vera level...mam
@NaveenKumar-vl6xv
@NaveenKumar-vl6xv 2 года назад
Good explanation in recursion topic
@najmudheenkalapatil78
@najmudheenkalapatil78 2 года назад
Excellent 👍👍
@Infinityy37
@Infinityy37 3 года назад
Hi sister.Can you show how to do fibonacci like factorial?
@mohansastraite6666
@mohansastraite6666 2 года назад
Awesome explanation mam
@laxshanpanchavarnan3655
@laxshanpanchavarnan3655 3 года назад
Thanks you ❤️
@reeshmashama
@reeshmashama Год назад
well explained
@ayyanar1438
@ayyanar1438 Год назад
Thanks Madam🙏
@sssureshtriples6686
@sssureshtriples6686 3 года назад
Thanks mam
@taeya3907
@taeya3907 2 года назад
In that main function, if we gave it as int main... then we have to write return 0 at the end or not?
@LogicFirstTamil
@LogicFirstTamil 2 года назад
yes. we should
@harishharish445
@harishharish445 2 года назад
Ma'am how to student mark recursion vachu yepadi program pannadhu if goto illa ma
@Surya-bd4ec
@Surya-bd4ec 8 месяцев назад
super
@srirengan5326
@srirengan5326 Год назад
👍
@nalanahathavan145
@nalanahathavan145 2 года назад
🔥
@livin7673
@livin7673 3 года назад
#include int checkForPrime(int); int i; int main() { int n1,primeNo; printf("\t Recursion : Check a number is prime number or not : "); printf(" Enter any number : "); scanf("%d",&n1); i = n1/2; primeNo = checkForPrime(n1); if(primeNo==1) printf(" The number %d is a prime number. ",n1); else printf(" The number %d is not a prime number. ",n1); return 0; } int checkForPrime(int n1) { if(i==1) { return 1; } else if(n1 % i == 0) { return 0; } else { i = i - 1; checkForPrime(n1); } } mam i have a doubt in this code. i understoood the use of i in this code. But, what is logic behind "i=n1/2".
@jerry9238
@jerry9238 Год назад
Thank you!
Далее
Recursion Explained in Tamil
14:53
Просмотров 60 тыс.
C_104 Recursion in C | Introduction to Recursion
18:51
Просмотров 423 тыс.
Arrays in C - Tamil (தமிழ்)
13:39
Просмотров 89 тыс.
Recursion in C
11:12
Просмотров 922 тыс.
54 - FUNCTIONS - C PROGRAMMING
37:03
Просмотров 362 тыс.