I've written a program which should count upper and lower letters and other signs but it counts anything but when I click Enter and then ^C (EOF). I don't know how to jump over it, hope somebody can help me somehow <3
#include <stdio.h>
#include <ctype.h>
int main()
{
  char ch;
  int uppers = 0, lowers = 0, others = 0;
  while((ch = getchar()) != EOF)
  {
    if(islower(ch))
      lowers++;
    else if(isupper(ch))
      uppers++;
    else
      others++;
  }
  printf("\n\nUpper letters - %d  Lower letters - %d   Others- %d", uppers, lowers, others);
  return 0;
}
 
     
    