ECEmily Culleninmrspeppers.hashnode.dev·Apr 12, 2021 · 6 min readReferences 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...00