fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a=5;
  5. printf("\n value of a : %d %d %d %d %d",a++,++a,a++,++a,a++);
  6. }
  7.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
 value of a : 9 10 7 10 5