fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char texto[50];
  6. printf("\nInforme seu nome completo: ");
  7. fgets(texto, 50, stdin);
  8. int cont = strlen(texto);
  9. printf("\nO tamanho da string: %i\n", cont);
  10. for (int i = 0; i < cont; i++) {
  11. printf("%d ", texto[i]);
  12. }
  13. texto[cont - 1] = '\0';
  14. cont = strlen(texto);
  15. printf("\nO tamanho da string: %i\n", cont);
  16. }
  17.  
Success #stdin #stdout 0s 2172KB
stdin
Over
stdout
Informe seu nome completo: 
O tamanho da string: 5
79 118 101 114 10 
O tamanho da string: 4