#include <stdio.h> int main() { int arr[]={6,7,8,9,10}; int *p=arr; *(p++)+=123; printf("%d,%d\n",*p,*(++p)); return 0; }