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 9118629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:11:59+00:00 2026-06-17T05:11:59+00:00

i know there is another question on the same example, but for different issue.

  • 0

i know there is another question on the same example, but for different issue.

This is the code example:

#include <stdio.h>
/* count digits, white space, others */
main()
{
    int c, i, nwhite, nother;
    int ndigit[10];
    nwhite = nother = 0;

    for (i = 0; i < 10; ++i)
        ndigit[i] = 0;

    while ((c = getchar()) != EOF)
        if (c >= '0' && c <= '9')
            ++ndigit[c-'0'];
        else if (c == ' ' || c == '\n' || c == '\t')
            ++nwhite;
        else
            ++nother;

    printf("digits =");

    for (i = 0; i < 10; ++i)
        printf(" %d", ndigit[i]);

    printf(", white space = %d, other = %d\n", nwhite, nother);
}

After I run is and execute the program with Ctrl + D, I get: digits = 0 0 0 0 0 0 0 0 0 0, white space = 0, other = 0. From Xcode…

But in the book they say “The output of this program on itself is: digits = 9 3 0 0 0 0 0 0 0 1, white space = 123, other = 345”

Can you tell me whats going on please..tnx.

  • 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-06-17T05:12:00+00:00Added an answer on June 17, 2026 at 5:12 am

    From the book;

    The output of this program on itself is
    digits = 9 3 0 0 0 0 0 0 0 1, white space = 123, other = 345

    Trying it with its own source as input;

    > gcc test.c
    > ./a.out < test.c
    
    digits = 9 3 0 0 0 0 0 0 0 1, white space = 125, other = 345
    

    Close, but I suspect the cut’n’paste from StackOverflow may account for the 2 extra white spaces 🙂

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

Sidebar

Related Questions

I know there is another question about this here but this just isn't working
I know there is a lot on this topic but I can't get any
I know there are a lot of questions around on this subject, but I've
I know that this question has been asked previously, but before you give me
This question follows another, just solved here Now I want to do a different
I need to know if there's any way (or another distinct approach) to an
Is there a way for a class called inside another to know the name
I know there are a lot of similar questions on SF, but I think
I know there is a wiki page about it , but since I'm very
I've seen bits and pieces of this question, but nothing that directly answers it.

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.