// Exemplo de Strings 2

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

main()
{
      char frase[50];
      int i,tam;
      
      printf("Digite uma frase: ");
      gets(frase);
      
      tam = strlen(frase);
      
      for (i=0;i<=tam-1;i++)
      {
          printf("Posicao[%d] ==> %c\n",i,frase[i]);
          _sleep(100);
      }
      
      getch();
}
      

