+ 2
What is the precedence in the printf statement?
for example : int x=1,y=2; printf ("%d",++x+++y);
1 Respuesta
+ 7
Simply : it is compiler dependent
The compiler is the only one which can decide for this kind of "precedence issue"
for example : int x=1,y=2; printf ("%d",++x+++y);