diff --git a/guide/english/cplusplus/the-auto-feature/index.md b/guide/english/cplusplus/the-auto-feature/index.md index 44bc904ace..e6ba2ed021 100644 --- a/guide/english/cplusplus/the-auto-feature/index.md +++ b/guide/english/cplusplus/the-auto-feature/index.md @@ -28,6 +28,10 @@ std::pair> last_employee = employees.back(); // with auto, you just have to write: auto last_employee = employees.back(); +//if you want to output the "last_employee" variable you have to do it with a pointer +cout<