You are on page 1of 1

#include <stdio.

h>

int main (){

int count;

for (count = 0 ; getchar() != EOF; ++count);

printf("%d\n", count);

return 0;

You might also like