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
@shanmugamadhavan1843 жыл бұрын
Fantastic Mam...!!!! Great Job Thanks Lot
@LogicFirstTamil3 жыл бұрын
Please check other videos in the channel and also pls share with your friends.
@shanmugamadhavan1843 жыл бұрын
@@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)
@thamizhsivagami35153 жыл бұрын
vera level explanation
@nithyakiruba8219 Жыл бұрын
Very clear explanation mam. Very very thank you mam
@kuttykutty62842 жыл бұрын
Explaining vera level...mam
@NaveenKumar-vl6xv3 жыл бұрын
Good explanation in recursion topic
@najmudheenkalapatil783 жыл бұрын
Excellent 👍👍
@mohansastraite66662 жыл бұрын
Awesome explanation mam
@Infinityy373 жыл бұрын
Hi sister.Can you show how to do fibonacci like factorial?
@laxshanpanchavarnan36553 жыл бұрын
Thanks you ❤️
@reeshmashama Жыл бұрын
well explained
@ayyanar1438 Жыл бұрын
Thanks Madam🙏
@harishharish4452 жыл бұрын
Ma'am how to student mark recursion vachu yepadi program pannadhu if goto illa ma
@taeya39072 жыл бұрын
In that main function, if we gave it as int main... then we have to write return 0 at the end or not?
@LogicFirstTamil2 жыл бұрын
yes. we should
@sssureshtriples66863 жыл бұрын
Thanks mam
@Surya-bd4ec10 ай бұрын
super
@srirengan5326 Жыл бұрын
👍
@nalanahathavan1452 жыл бұрын
🔥
@livin76733 жыл бұрын
#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".