What it is possible? can anyone explain me? All Questions › Category: C Language › What it is possible? can anyone explain me? 0 Vote Up Vote Down Anonymous asked 3 years ago I am getting output as Value: 8 7 9 5 for the code below. #include <stdio.h> int main(){int a=5;printf(“Value : %d %d %d %d\n”,a++,a++,++a,a++);}