#include int main() { float total = 20.5; // declare and initialize total float& sum = total; // declare another name for total cout << "sum = " << sum << endl; sum = 18.6; // this changes the value in total cout << "total = " << total << endl; return 0; }