What is the output of this code? int numbers[] = { 35, 57, 7…
What is the output of this code? int numbers[] = { 35, 57, 78, 66, 41, 12 }; int *ptrA = numbers + 3; int *ptrB = ptrA + 1; int *ptrC = ptrA – 1; printf( “%d, %d, %d\n”, *ptrA, *ptrB, *ptrC );