/*#include
main()
{
long nc=0;
while(getchar()!=EOF)
{
++nc;
printf("%ld\n",nc);
}
}*/

#include
main()
{
double nc;
for(nc=0;getchar()!=EOF;++nc)
;
printf("%.0f",nc);
}

Asked by
CpjJwWHV   print a number that is equal to the size of the file.
14 years ago

Smiley