fork download
  1. #include <stdio.h>
  2.  
  3. int add(int x, int y);
  4.  
  5. int main(void){
  6. int a,b,*p,*q;
  7.  
  8. p=&a;
  9. q=&b;
  10. a=1;
  11. *q=3;
  12.  
  13.  
  14. printf("%d,%d,%d,%d",a,b,*p,*q);
  15. }
  16.  
  17.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
1,3,1,3