#include using namespace std; int main() { int *somePtr; //request enough memory for an int somePtr = new int; *somePtr = 25 ; int total = *somePtr; cout<< *somePtr <> *somePtr; total += *somePtr; cout << "total: " <