I watched a lot of video tutorials on KZbin but not like this. When most other teacher teaches me I forget it after few days. However when Mike Dane teaches me once it's difficult for me to forget. Mike really teaches the essence of every program which shapes the foundation. Every words coming out from Mike's mouth fills in my experience and lot more. Thank you Mike for your hardworkings to make valuable lessons available for free not just for me but for everyone.
@nukee22835 жыл бұрын
Idk why your so good at explaining things but thank you so much man :)
@soupy17875 жыл бұрын
Take a drink every time he says it is stored inside the memory
@aishabatool47614 жыл бұрын
I take so many lectures to learn c++ but your criteria of teaching are very helpful for me, it is precise but complete. Thanks ...
@zikrifadzil016 жыл бұрын
Bloody hell I didnt know it was this easy xD
@H_I_R_B_O3 жыл бұрын
CONGRATS MAN!! YOUR VIDEOS ARE VERY BEGINNER FRIENDLY.
@aishahkamal41874 жыл бұрын
Thankyouuu its really help me🥰
@manipurihunabopa Жыл бұрын
❤Mike, your teachings are very good. I think it'd be excellent if you teach some projects. Please, make some useful projects and teach it to us. We'll appreciate it more.
@kazha984 жыл бұрын
Hello there! I'm still a bit confused. What do you use pointers for? What are some applications for this value? Where do you use them and what type of tasks are done using pointers?
@ravagerr4 жыл бұрын
That's what I was wondering. They seem kinda useless.
@programmer48334 жыл бұрын
Entirely agree with you, it would be nice to know where and why to use them. Are they quicker to access ? etc... (same questions as you and it would be nice if we could have an answer)
@ariiqsyafiinalfaqih52433 жыл бұрын
when you build a large program, its very useful to manage, and reduce the code, so your program would be more fast if you manage a memory address. With pointer, you can delete the some stuff in your program, it will optimize your program performance. lets take a example u build a game. you might not want your users that playing your game getting lag when they playing your game, right? Pointer is best solution to prevent that. You probably delete some variable that not useless anymore or u can use reference to reduce too much memory..