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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:05:26+00:00 2026-05-31T19:05:26+00:00

I am taking my first steps in C++ having a good background in Java.

  • 0

I am taking my first steps in C++ having a good background in Java. I need to clear out some peculiarities of the ++ operator in C++. Consider the following program:

#include <iostream>
using namespace std;
void __print(int x, int *px) {
 cout << "(x, *px) = (" << x << ", " << *px << ")" << endl;
}

int main() {
 int x = 99;
 int *px = &x;
 __print(x, px);
 x++; __print(x, px);
 x = x + 1; __print(x, px);
 *px = *px + 1; __print(x, px);
 *px++; __print(x, px);
 return 0;
}

Surprisingly to me, the program prints:

(x, *px) = (99, 99)
(x, *px) = (100, 100)
(x, *px) = (101, 101)
(x, *px) = (102, 102)
(x, *px) = (102, 134514848)

It seems that *px = *px + 1 does not have the same effect on *px as on x. But aren’t these things the same??? Isn’t it *px == x?

  • 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-31T19:05:27+00:00Added an answer on May 31, 2026 at 7:05 pm

    the * operator works after the ++ so it returns the value of a wrong address. the operator precedence is important to know in c++. take a look at this :

    http://en.cppreference.com/w/cpp/language/operator_precedence

    Add parentheses to change operator precedence, for example:

    #include <iostream>
    using namespace std;
    void __print(int x, int *px) {
     cout << "(x, *px) = (" << x << ", " << *px << ")" << endl;
    }
    
    int main() {
     int x = 99;
     int *px = &x;
     __print(x, px);
     x++; __print(x, px);
     x = x + 1; __print(x, px);
     *px = *px + 1; __print(x, px);
     (*px)++; __print(x, px);
     return 0;
    }
    

    result:

    (x, *px) = (99, 99)
    (x, *px) = (100, 100)
    (x, *px) = (101, 101)
    (x, *px) = (102, 102)
    (x, *px) = (103, 103)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am taking my first steps with Apache Wicket and ran into the following
I am taking my first steps programming in Lua and get this error when
I'm just taking my first steps with Azure and the first thing I see
I am taking my first foray into PHP programming and need to configure the
I'm taking my first steps in C#. I'm building a turned based cards game
I'm a C# developer taking my first steps in Windows Mobile development. I've installed
I'm taking my first steps in PhoneGap with Android (How come you have to
I am taking first steps in socket programming as an added complexity I am
I am taking my first steps with MsTest and Moq and would like to
I'm having some trouble figuring out the best way to do this, and I

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.