fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct{
  4. int x;
  5. int y;
  6. }co;
  7.  
  8. int main(void) {
  9.  
  10. co me={1,2};
  11. co *shad=&me;
  12. (*shad).x=2;
  13. (*shad).y=3;
  14.  
  15. printf("%d %d",me.x,me.y);
  16. printf("%d %d",(*shad).x,shad->y);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
2 32 3