#include <stdio.h>
int main()
{
int i[ ] = {3, 5};
int *p = i;
int j = --*p++;
printf("j = %d\n\n", j);
return 0;
}
Can someone explain to me why the answer is "j = 2"?
This code from the course notebook; they didn't explain it in the book.