Why am I getting different output for variables c
and d
? how do I explain e
? can any one give a clue?
#include <stdio.h>
#include <string.h>
main()
{
int i=10,d=10,e=10;
float c;
c=(float)++i + ++i;
d= ++d + ++d;
e= ++e + ++e + ++e;
printf("d=%d\n c=%f\n e=%d ",d,c,e);
}
This is the output.
d=24
c=23.000000
e=37
Because of the Undefined Behavior of the program. Statement
is trying to modify
i
twice between two sequence point. Between two sequence point modification can be done only once to a variable.C-FAQ: 3.8:
C11: 5.1.2.3 Program execution:
Same for the statements
Side Note:
C11: Annexe C: Sequence points: