fork(1) download
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main() {
  5. const char *RA = "19480685";
  6. int tamanho = strlen(RA);
  7. int vetor[tamanho];
  8. for (int i = 0; i < tamanho; i++) vetor[i] = RA[i];
  9. for (int i = 0; i < tamanho; i++) printf ("%c\n", vetor[i]);
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/395616/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
1
9
4
8
0
6
8
5