c++ shorts Different between a pointer variable and reference variable in C++ A reference is just giving another name to an existing object or variable. Whereas a pointer is a variable that stores the address of another object.
c++ shorts What is --> operator in C/C++ ? In C++, we can combine two same/different operators in a single expression. '-->' is not a single ...