I watched your Java tutorial 4 years ago, went to a bootcamp and didn't keep it up after that. Now I'm bach rehabilitating & learning new stuff (C right now). Your tutorial are the best! Hope you're doing well Mike!
@rowevr6 жыл бұрын
Awesome video! Thank you!
@harkakatwal69952 жыл бұрын
Very helpful video. I really learnt!!!
@anandakrishnannair3 жыл бұрын
Thank you. This is very much clear.
@grapesoe6 жыл бұрын
thank you!
@TheTormozz Жыл бұрын
FInally some good teaching
@volodymyrmareyev95045 жыл бұрын
Thanks for explanation!
@vincebeknown5 жыл бұрын
Thanks Bro!
@mikegonz51084 жыл бұрын
Why use the term 'Dereference' and not just use 'Reference'?
@mathewkloepfer6644 жыл бұрын
Because the pointer itself is a reference, but the value it points to is not a reference.
@saidarshan60085 жыл бұрын
what is the diference btween printf("%d",&age) and printf("%p",&age)
@nogabitzer35863 жыл бұрын
printf(%d, &age) is giving you the value of age and printf(%p, &age) is gicing you the adress of age
@cbworm2 жыл бұрын
%d displays the information in decimal form %p displays the information in pointer form (hexadecimal)