C++ Composite Types (References and Pointers)
Composite types refer to types defined based on other types.Simple variable definition: data type +declarator (variable name)ReferenceReference: gives another name to an object, and the reference type refers to another type.References are defined by writing the declarator in the form of &d, where d is the name of the declared variable. int ival=1024;int &refVal = … Read more