Small statistical character exercises in C Language

Source: Internet
Author: User

# Include <stdio. h> # define IN 1 // IN The word # define OUT 0 // not IN The word/* The C programming language [second edition] exercises The applet function: counts the number of characters, words, and rows. */Int main () {int c; // store the input word int STATE = OUT; // The initial STATE is not in the word int nc = 0; // record the new character int nl = 0; // record the new row int nw = 0; // record the new word while (c = getchar ())! = 'Q') // enter the 'q' character to exit the input {nc ++; if (c = '\ n') nl ++; if (c = ''| c = '\ n' | c =' \ t') STATE = OUT; else if (STATE = OUT) {STATE = IN; nw ++ ;}} printf ("% d \ n", nl, nw, nc); return 0 ;}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.