Ooooooooh. Thank you to you and your little memory boxes
@HemanthaKumarYadav4 жыл бұрын
I was really confused before this video thank you sir
@CppNuts4 жыл бұрын
Happy to help
@arianemartir68424 жыл бұрын
This was really helpful! Thank you!
@CppNuts4 жыл бұрын
Thanks dude..
@gaoqiangzhou99604 жыл бұрын
you helped me a lot! thank you!
@CppNuts4 жыл бұрын
I'm so glad!
@lysdexic91297 жыл бұрын
I'm a bit confused when using a reference as a function parameter as it must be different from a reference defined in the body of a function. A reference defined in the body of a function needs to be initialised and the reference cannot be re-assigned to 'point' to another variable once initialised. So when passing an argument to a function with a reference parameter is there some type of initialisation occurring also each time the function is called a different variable can be passed. Thanks.
@CppNuts7 жыл бұрын
lys dexic you are correct.. Reference can not be created without initialization, and they get initialize when ever you call that function.