Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1105123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:34:58+00:00 2026-05-17T01:34:58+00:00

What is the fastest way to count lines and words in a text file

  • 0

What is the fastest way to count lines and words in a text file in pure ANSI C?

A word is terminated by a space or period. Line is terminated by '\n'.

This seems to be in C++.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T01:34:58+00:00Added an answer on May 17, 2026 at 1:34 am

    Maybe take a look at the source code of the GNU wc utility as this utility does exactly what you want.

    #include <stdlib.h>
    #include <stdio.h>
    #include <stdarg.h>
    
    typedef unsigned long count_t;  /* Counter type */
    
    /* Current file counters: chars, words, lines */
    count_t ccount;
    count_t wcount;
    count_t lcount;
    
    /* Totals counters: chars, words, lines */
    count_t total_ccount = 0;
    count_t total_wcount = 0;
    count_t total_lcount = 0;
    
    /* Print error message and exit with error status. If PERR is not 0,
       display current errno status. */
    static void
    error_print (int perr, char *fmt, va_list ap)
    {
      vfprintf (stderr, fmt, ap);
      if (perr)
        perror (" ");
      else
        fprintf (stderr, "\n");
      exit (1);  
    }
    
    /* Print error message and exit with error status. */
    static void
    errf (char *fmt, ...)
    {
      va_list ap;
    
      va_start (ap, fmt);
      error_print (0, fmt, ap);
      va_end (ap);
    }
    
    /* Print error message followed by errno status and exit
       with error code. */
    static void
    perrf (char *fmt, ...)
    {
      va_list ap;
    
      va_start (ap, fmt);
      error_print (1, fmt, ap);
      va_end (ap);
    }
    
    /* Output counters for given file */
    void
    report (char *file, count_t ccount, count_t wcount, count_t lcount)
    {
      printf ("%6lu %6lu %6lu %s\n", lcount, wcount, ccount, file);
    }
    
    /* Return true if C is a valid word constituent */
    static int
    isword (unsigned char c)
    {
      return isalpha (c);
    }
    
    /* Increase character and, if necessary, line counters */
    #define COUNT(c)       \
          ccount++;        \
          if ((c) == '\n') \
            lcount++;
    
    /* Get next word from the input stream. Return 0 on end
       of file or error condition. Return 1 otherwise. */
    int
    getword (FILE *fp)
    {
      int c;
      int word = 0;
    
      if (feof (fp))
        return 0;
    
      while ((c = getc (fp)) != EOF)
        {
          if (isword (c))
            {
              wcount++;
              break;
            }
          COUNT (c);
        }
    
      for (; c != EOF; c = getc (fp))
        {
          COUNT (c);
          if (!isword (c))
            break;
        }
    
      return c != EOF;
    }
    
    /* Process file FILE. */
    void
    counter (char *file)
    {
      FILE *fp = fopen (file, "r");
    
      if (!fp)
        perrf ("cannot open file `%s'", file);
    
      ccount = wcount = lcount = 0;
      while (getword (fp))
        ;
      fclose (fp);
    
      report (file, ccount, wcount, lcount);
      total_ccount += ccount;
      total_wcount += wcount;
      total_lcount += lcount;
    }
    
    int
    main (int argc, char **argv)
    {
      int i;
    
      if (argc < 2)
        errf ("usage: wc FILE [FILE...]");
    
      for (i = 1; i < argc; i++)
        counter (argv[i]);
    
      if (argc > 2)
        report ("total", total_ccount, total_wcount, total_lcount);
      return 0;
    }
    

    Found at:
    http://www.gnu.org/software/cflow/manual/html_node/Source-of-wc-command.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

what's the fastest way to sort file by the first letter of each line?
What's the fastest way using either DOS scripting or PowerShell to run this simple
What is the fastest way to count the number of times a certain string
An interesting problem I ran into today: what is the fastest way to count
What is the fastest way to count all results for a given Query in
Whats the fastest way to get an approximate count of number of rows of
Given a file (binary or textual), what is the fastest or most elegant way
Given two unsigned integers, what is the fastest way to count the number of
What is the fastest way to get a list object with a count of
Fastest way to uniqify a list in Python without preserving order? I saw many

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.