fork(1) download
  1. #include <stdio.h>
  2.  
  3. void MostraTodos(char memoria[][30]) {
  4. for (int i = 0; i < 3; i++) printf("%s\n", memoria[i]);
  5. }
  6.  
  7. int main() {
  8. char memoria[3][30];
  9. for (int i = 0; i < 3; i++) {
  10. printf("Introduza o seu nome\n");
  11. scanf("%s", &memoria[i][0]);
  12. }
  13. MostraTodos(memoria);
  14. }
  15.  
  16. //https://pt.stackoverflow.com/q/260041/101
Success #stdin #stdout 0s 4504KB
stdin
abc
defgh
ihklmno
stdout
Introduza o seu nome
Introduza o seu nome
Introduza o seu nome
abc
defgh
ihklmno