whitespaces

  1. A

    count number of whitespaces in C

    Hello everybody, I was doing a simple program to count number of whitespaces in a text file but I am stuck at it. Here is the code void main() { FILE *from; int ch,count; int c; from = fopen("newfile","r"); while ((c = fgetc(from)) != EOF) {...
Top Bottom