fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int a=5;
  6. printf("ค่าเริ่มต้น=%d",a );
  7. printf("\n");
  8. printf("postfix=%d",a--);
  9. printf("\n");
  10. printf("ค่าล่าสุด=%d",a);
  11.  
  12. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
ค่าเริ่มต้น=5
postfix=5
ค่าล่าสุด=4