Assignment aand Precedence of operators in c

94 Views Asked by At

somebody explain this please don't anyy me with ridiculous code

#include<stdio.h>
#include<conio.h>
int main()
{ 
    int a = 5 ;
    printf( "%d %d %d %d %d", a, ++a, a++,--a,a--);
    getchar();
    return 0;
}
1

There are 1 best solutions below

0
On BEST ANSWER

The order in which the arguments of printf are evaluated is implementation specific. Output change from machine to machine.