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

  • Home
  • SEARCH
  • 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 8825887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:59:19+00:00 2026-06-14T06:59:19+00:00

I need to count the characters in the comments from a C program, that

  • 0

I need to count the characters in the comments from a C program, that is supplied as a standard input. This is my function, but for some reason it’s not counting right. Can you help me please?

int characters(FILE *file)
{
     int i=0;
     char ch[500], *p;
     while (fgets(ch, sizeof(ch),file)!=NULL)
     {
        p=ch;
        while (*p)
        { 
           if (*p=='/')
           { 
              p++;
              if (*p=='*')
              {
                 p++;
                 while (*p!='*' && *(p++)!='/')
                 {
                    i++;
                    p++;
                 }
              }
           }
           else
              p++;

         }


   return i;
}
  • 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-14T06:59:20+00:00Added an answer on June 14, 2026 at 6:59 am

    I think the problem is in the innermost loop:

    while (*p!='*' && *(p++)!='/')
    

    should be

    while (*p!='*' && *(p+1)!='/')
    

    But this will break if it sees something like this:

    /* comment * */
    

    because the first part of the condition *p!='*' will be false at the first asterisk, so you could do something like this instead:

    while (!(*p=='*' && *(p+1)=='/')) {
       p++;
       i++;
    }
    

    Note: if the line is broken you will get a segmentation fault:

        /* comment * \n
        */
    

    you still have to deal with that but you should add *p to the inner loop:

    while (*p && !(*p=='*' && *(p+1)=='/')) {
       p++;
       i++;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got some tests that need to count the number of warnings raised by
I need to validate a form. This is some server side validation that checks
I need to write a function that will count words in a string. For
I need to split text into two parts which this function does but it
I need function count_sprintf() that should return number of characters (not inc nul byte)
I need to count the occurrences of these characters (most of them must be
I need to count all distinct values from table LDS where status = 'ok'
I need to count number of email addresses in a db that have 3
I need a regex to count characters in a string which need 2 keystrokes
I need to character count the sum of all the characters in a text

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.