Well my English not very good and I am a beginner of C pls don't mind.Here's the questions , when I put in ++a and a-- at the same program ,the second always read the forward one , can someone help me to figure it out im will appreciate it.
#include<stdio.h>
#include<stdlib.h>
int main() {
int a = 8;
printf("a=%d\n", ++a);
printf("a=%d\n", a--);
system("pause");
return 0;
}
it output a=9 a=9