C++: const Pointer Declarations
In C++, what is the difference between these three declarations?
```cpp
const char* p1;
char const* p2;
char* const p3;
```
Which can you reassign? Which let you modify the underlying characters?
Open the full interactive solver, hints, and worked solution →