Crystal clear explanation with next level editing!!!! Keep up the good work bud. Looking forward to many more......
@theteachr4 жыл бұрын
Glad you liked it! Thank you so much. More to come!
@kraymis2271 Жыл бұрын
THIS IS LITERALLY THE MOST USEFUL AND PERFECT EXPLANATION! THANK YOU SO MUCH
@prospektnova90042 жыл бұрын
Your tutorials are simply amazing and underrated by the algorithm. I wish I found this earlier.
@amanimavu8102 жыл бұрын
This was really a clear explanation. Liked the use of the animations too.
@hermitao17624 жыл бұрын
Thank you!! I learned a lot, keep it up.
@theteachr4 жыл бұрын
Thank you! Glad it was helpful!
@fantasticwolf42382 жыл бұрын
I really like how you make this as simple as possible and the visualisation techniques aswell..keep on going 👍👍
@bydefinition79644 жыл бұрын
Please keep it up You ROCK!!!
@drewdwyer68759 ай бұрын
Thank you for this video!
@jayleimer38364 жыл бұрын
Great work, please keep it up
@theteachr4 жыл бұрын
Thank you so much, will do!
@JeffChentingwei6284 жыл бұрын
clc-wiki.net/wiki/C_language:Terms:Pass_by_reference C does not directly support pass by reference because it always uses pass by value.
@MrSomethingdarkАй бұрын
That's good to say but you should finish your thoughts though. After reading what you posted from the wiki they do say that although it is not supported one can implement it. Step away from the Stack Overflow mentality. I forgot this actually and you reminded me of the pass by value only. But I admit it and add to the full solution. Theteachr is good because he finishes his thought, he goes the length to explain it all. I love the tutorials because of that not because of half finished thought that leave space for interpretation.
@anasseddafir42154 жыл бұрын
Besides you and Bjarne Stroustrup I haven't seen a single person explain the need for pointers properly.
@tejaswi19954 жыл бұрын
Great content
@theteachr4 жыл бұрын
Thank you 🙌🏻
@umangpandey17834 жыл бұрын
Holy shit you are underrated...
@vittorioromeo14 жыл бұрын
I really like the visualizations. How are you making them?
@theteachr4 жыл бұрын
Thank you! I use Keynote.
@clashofindia60569 ай бұрын
You are amazing❤.
@Codeccino3 ай бұрын
Great work. What is the application you used to create these graphics and animations
@theteachr3 ай бұрын
theteachr.github.io
@Entertainment14336 Жыл бұрын
how you did animation tell me process...
@vikas2__49 ай бұрын
❤
@sajadzirak432 жыл бұрын
Thanks a lot
@danielherbert5291 Жыл бұрын
Pointers, and call by value demystified (check)
@faridnubaili7917 Жыл бұрын
Why not using void function and just swap a and b? Is there any disadvantage of doing so?
@theteachr Жыл бұрын
Can you be more specific on using void function and just swap? What would its signature be?
@florian_ariasu2 жыл бұрын
U amazing man!
@RagHelen4 жыл бұрын
Doesn't convince me. There must be a reason, why variable name are not good enough for doing anything in C.
@theteachr2 жыл бұрын
If you have a big struct and you want to pass it to a function by value, you're going to be copying all its contents over to function's stack frame, which is definitely costlier than passing it by ref, where at max you're going to take up 8 bytes per argument.