fork download
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. int a= 10,b;
  6. b = a++ + ++a;
  7. printf("%d,%d,%d,%d,%d",b,a++,a,++a,a++);
  8.  
  9. return 0;
  10. }// Online C compiler to run C program online
  11. #include <stdio.h>
  12.  
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
45
stdout
22,14,15,15,12