// Diffrence Between Reference and Pointer // - Reference variable as an alias for another variable // - Reference cariable as a constant pointer. Cannot be reassigned // after being initialized #include void main() { int furby = 88; int& toybot = furby; toybot = 77; toybot += 3; cout << toybot << furby << endl; // 8080 // ------------------------------------------ int i = 88; int* intPtr = &i; *intPtr = 77; *intPtr += 3; cout << *intPtr << i; }