fork download
  1. #include<stdio.h>
  2. int main(void)
  3. {
  4. int a;
  5. a= 1,2,3;
  6. int b = a++;
  7. printf("%d",b);
  8.  
  9. //getchar();
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
1