int main()
{
int* const array;
const int* array;
int a = 10;
array = &a;//You can't exchange array self , array just is a integar//
*array = 13;//This is error ,you can't exchange pointer array to information//
std::cout << *array << std::endl;
std::cin.get();
}