fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct{
  4. int x;
  5. int y;
  6. }yes;
  7.  
  8. void move(yes *b);
  9.  
  10. int main(void) {
  11.  
  12. yes a={1,2};
  13.  
  14. move(&a);
  15.  
  16. printf("%d %d",a.x,a.y);
  17.  
  18. return 0;
  19. }
  20.  
  21. move(yes *b){
  22. (*b).x++;
  23. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
2 2