Ver original#include <stdio.h>#include <string.h>main(){int longi;char frase[200];printf("Ingrese su frase: ");scanf ("%s", frase); longi = strlen(frase); printf ("La frase tiene %d caracteres", longi);system("pause");}