I've started learning C++ via this page.
The concepts of rvalue and lvalue were confusing for me, especially this:
Note: const variables are considered non-modifiable l-values.
I don't understand that const variable can be lvalue. Is there any example code that the const variable is used as lvalue in practice? I see no difference between rvalue and non-modifiable lvalue.