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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T05:31:48+00:00 2026-06-08T05:31:48+00:00

When I do this: count = ++count; Why do i get the warning –

  • 0

When I do this:
count = ++count;
Why do i get the warning – The assignment to variable count has no effect ?
This means that count is incremented and then assigned to itself or something else ?
Is it the same as just ++count ?
What happens in count = count++; ? Why don’t I get a warning for this ?

  • 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-08T05:31:50+00:00Added an answer on June 8, 2026 at 5:31 am

    count++ and ++count are both short for count=count+1. The assignment is built in, so there’s no point to assigning it again. The difference between count++ (also knows as postfix) and ++count (also known as prefix) is that ++count will happen before the rest of the line, and count++ will happen after the rest of the line.

    If you were to take apart count=count++, you would end up with this:

        count = count;
        count = count+1;
    

    Now you can see why postfix won’t give you a warning: something is actually being changed at the end.

    If you take apart count=++count, you would end up with this:

        count = count+1;
        count = count;
    

    As you can see, the second line of code is useless, and that’s why the compiler is warning you.

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

Sidebar

Related Questions

Warning: substr_count() [function.substr-count]: Empty substring. I get this message when calling the function browsertest.
If I use a variable in a php SQL statement that also has COUNT,
bool image_manager::contains_image(const std::string& filename) { return this->map_.count(filename); } Now the warning I get is:
Is this the correct/best SPARQL query to get the count of items in rdf:list:
I wrote this function to get the unread count of google reader items. function
I am trying to get the comment count for a video entry but this
I have variable @count of datatype int.I am setting values to this @count. I
Please refer to this background question. After constructing this COUNT, how would I then
I have a invalid XML like this Warning: count() [function.count]: Node no longer exists
When I try and run my program I get this warning and some weird

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.