fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char entrada[100]; // Para obter até 100 caracteres da entrada
  6. int * elementos[10]; // Array com capacidade para 10 elementos
  7. int i = 0;
  8.  
  9. int tamanhoArray = sizeof elementos / sizeof(int);
  10.  
  11. if(fgets(entrada, sizeof entrada, stdin) != NULL) {
  12. for (char *pedaco = strtok(entrada, " "); pedaco != NULL; pedaco = strtok(NULL, " ")) {
  13.  
  14. // Se atingir a capacidade do array
  15. if (i >= tamanhoArray) {
  16. puts("Não foi possível adicionar mais itens na lista!");
  17. break;
  18. }
  19.  
  20. elementos[i++] = pedaco;
  21. }
  22.  
  23. for (int n = 0; n < tamanhoArray; ++n) {
  24. printf("Indice [%d] = %s\n", n, elementos[n]);
  25. }
  26. }
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0s 2172KB
stdin
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
stdout
Não foi possível adicionar mais itens na lista!
Indice [0] = 0
Indice [1] = 1
Indice [2] = 2
Indice [3] = 3
Indice [4] = 4
Indice [5] = 5
Indice [6] = 6
Indice [7] = 7
Indice [8] = 8
Indice [9] = 9