fork(1) download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i=3;
  5. int *j=&i;
  6.  
  7. printf("%d%d",++*j,*(&i));
  8. }
Success #stdin #stdout 0s 4672KB
stdin
Standard input is empty
stdout
44