I have a basic doubt...
When we use the post incrment operator the incremnet of the
variable is done after the execution of the statemnt?????
for eg
int i=1;
printf("%d %d",i++,i++);
shud the answer be 1 1
or 1 2
i want to understand the execution pt
When we use the post incrment operator the incremnet of the
variable is done after the execution of the statemnt?????
for eg
int i=1;
printf("%d %d",i++,i++);
shud the answer be 1 1
or 1 2
i want to understand the execution pt
Comment