// badptr1.cpp #include using namespace std; int main() { int* b; // b is a pointer to varible of type int int vect[3] = {1,2,3}; // vector of int int* c; // non-initialized pointer cout << "c: " << c << ", *c: " << *c <