fork download
  1. #include <stdio.h>
  2.  
  3. int main (){
  4. int i = 5, j = 3, *p = &i, *q = &j, x = (*p)++;
  5. printf("%d %d \n", *p, x + *q);
  6. }
  7.  
  8. //https://pt.stackoverflow.com/q/494102/101
Success #stdin #stdout 0s 4900KB
stdin
Standard input is empty
stdout
6 8