What is the correct way to declare a constant pointer to an integer in C++?
int const *ptr;
const int * const ptr;
const int *ptr;
int * const ptr;
This question is part of this quiz :