fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef struct animal TAnimal;
  4.  
  5. typedef struct jogador {
  6. char nome[50];
  7. TAnimal* animal;
  8. } TJogador;
  9.  
  10. struct animal {
  11. char nome[50];
  12. TJogador* jogador;
  13. };
  14.  
  15. int main(void) {
  16. TJogador jogador = { .nome = "abc" };
  17. TAnimal animal = { .nome = "hipopo", .jogador = &jogador };
  18. jogador.animal = &animal;
  19. }
  20.  
  21. //http://pt.stackoverflow.com/q/190991/101
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty