fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. typedef struct {
  5. char nome[30];
  6. int idade;
  7. } p;
  8.  
  9. int main(void) {
  10. p x,y;
  11. strcpy(x.nome, "ana");
  12. x.idade = 20;
  13. strcpy(y.nome, "caio");
  14. y.idade = 22;
  15. printf("%s : %d", x.nome, x.idade);
  16. printf("%s : %d", y.nome, y.idade);
  17. }
  18.  
  19. //https://pt.stackoverflow.com/q/181556/101
Success #stdin #stdout 0s 4468KB
stdin
Standard input is empty
stdout
ana : 20caio : 22