With the following statement, write a program to output the value of each pointer variable and the value of pointer variable + 1. Submit the output of your program. For example, cout << pChar << \t" << pChar+1 << endl; or printf("%p\t%p\n", pChar, pChar+1); char ch; int size; double price; int arr[5]; char *pChar = &ch; int *pInt = &size; double *pDbl = &price; int (*pArr)[5] = &arr;