Ver original#include <stdio.h> /*Conteo de caracteres*/ main() { long nc; char c; nc = 0; while((c = getchar()) != '\n') ++nc; printf("%ld\n", nc); }