#include using namespace std; int main() { int i,j; int *p; i = 10; j = 5; p = &i; (*p)++; p = &j; (*p)++; cout << i << " " << j << endl; return 0; }