Damn it took 30 secs for me to realize what professors explains in 3 hours... Thanks man
@cse-learning2 жыл бұрын
Thanks Alve. I am glad this helped you.
@RAISTAR90326 Жыл бұрын
thanks brother u explained the complicated thing so easily and it is very helpful for me 💗
@Bran-m1nАй бұрын
thank you so much
@oscarvazquez4600 Жыл бұрын
Really good explanation thank you
@s000sdas2 жыл бұрын
Thanks bro, as a uni student this came clear.
@merlijn17222 жыл бұрын
Super useful! Thanks so much
@yokab2 жыл бұрын
Dude you rule!, thanks that was so useful!
@raneem_mousa Жыл бұрын
Thanks that was helpful
@marticus9170 Жыл бұрын
Thanks! Your explanation was really clear!
@monirul__kabir48542 жыл бұрын
Nice man...
@success755010 ай бұрын
thank you so much for the video, how do you go ahead to add those extracted numbers please. thank you again.
@cse-learning10 ай бұрын
I am glad that I could help you. As the extracted number are stored in digit, you can add values of digits. kzbin.info/www/bejne/h3rdaKKMZ7Z6fbs --> You can see an example here. kzbin.info/www/bejne/h3rdaKKMZ7Z6fbs --> explanation is here in this video (in Hindi)
@success755010 ай бұрын
@@cse-learning Thank you
@akaStarboyy Жыл бұрын
bro how can we extract the first digit , like we are finding last digit first by remainder method.??
@cse-learning Жыл бұрын
The straight answer is 'I don't think its possible' without any inbuilt function. In Python, its too easy. But as a programmer, its up to you what you are doing in back but getting the expected result.
@tiredstudent87972 жыл бұрын
how would you extract a specific digit from a number? for example if the number is 14672, I choose the 3rd digit, it extracts the number 6
@cse-learning2 жыл бұрын
This can be achieved by multiple ways and it's totally depends on how you think. One approach can be, you can start a counter and whenever a digit is extracted, increment the counter. Once counter hits 3, you can print the digit.
@zaker62573 жыл бұрын
Thanks
@milanjana19193 жыл бұрын
There should be a for loop and array assignment...otherwise the digit will replace the previous one
@this.saikat3 жыл бұрын
no Actually there should be a check if it's 0. because the last quotient is 0. If it's 0 so the loop will be stop. I'm not taking about for loop or array.
@xerath52243 жыл бұрын
Nice !!!
@sabbir_ahmed_fahim11 ай бұрын
hhow i can relate why we use 10000% in C programming
@cse-learning10 ай бұрын
Question is not clear to me. please rephrase.
@cartoongaming3586 Жыл бұрын
That is ok but i need to give a variable for each no like num=345 a=3 b=4 c=5... I need for n number please give me some idea.😅
@cse-learning Жыл бұрын
Create a dynamic array and store those numbers into that array. Study malloc/calloc and you would achieve what you want.
@cartoongaming3586 Жыл бұрын
@@cse-learning thank you boss
@vadlanithinnarasimha67972 жыл бұрын
Bro u said extraction of digits from a number 😓but you did reversing of number.
@cse-learning2 жыл бұрын
Bro, Its extraction of digits only in reverse order. All the numbers are printed on console together so its looks like reverse of the number but in fact it is not. Reversing is different, you can get the clarity in this video. kzbin.info/www/bejne/fXKXe4SrrcqcmLs (In Hindi).