fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int i = 5, j = 3, *p, *q;
  6. p = &i;
  7. q = &j;
  8. printf("%d %d \n", *p, (*p)++ + *q);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4884KB
stdin
Standard input is empty
stdout
6 8