References in C++
sources C++ Primer book and https://www.geeksforgeeks.org/references-in-c/
What are references in C++?
EXAMPLE:
int myVal = 1024;
int &refVal = myVal; refVal refers to (is another name for) myVal
int &refVal2; //error: a referen...
mrspeppers.hashnode.dev6 min read