0
Could anyone explain me the meaning of -> in C++ syntax?
My question arise from the study of linked lists data structure in C++ procedural programming
3 Respostas
+ 1
obj->var is equivalent to (*obj).var
0
thank you very much
0
youre welcome ;)
My question arise from the study of linked lists data structure in C++ procedural programming