#include using namespace std ; int main() { int* ptr1 ; //new style of C++ ptr1 = new int ; *ptr1 = 100 ; cout << *ptr1 << endl ; //ptr1 = ptr1 + 1 ; //cout << *ptr1 << endl ; delete ptr1 ; //delete 0 ; }