====== C - C++ Pointers - const auto_ptr ====== #include #include using namespace std; int main() { const auto_ptr a(new float(20)); const auto_ptr b(new int(0)); const auto_ptr c; cout << "Before assigning values" << endl; cout << " a: ";cout<< a.get() <