Understand the essential difference between these two functions. ```c++ void foo(int& t); void foo(const int& t); ```
Understand the essential difference between these two functions.