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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:18:35+00:00 2026-05-23T09:18:35+00:00

In Objective-C, is there any difference between n++ and ++n (eg. used in a

  • 0

In Objective-C, is there any difference between n++ and ++n (eg. used in a for loop)?

  • 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-23T09:18:36+00:00Added an answer on May 23, 2026 at 9:18 am

    ++n; increments the value of n before the expression is evaluated.

    n++; increments the value of n after the expression is evaluated.

    So compare the results of this

    int n = 41;
    int o = ++n; //n = 42, o = 42
    

    with the results of this:

    int n = 41;
    int o = n++; //n = 42, o = 41
    

    In the case of loops:

    for (int i = 0; i < j; i++) {/*...*/}
    

    however it doesn’t make any difference, unless you had something like this:

    for (int i = 0; i < j; x = i++) {/*...*/}
    

    or this:

    for (int i = 0; i < j; x = ++i) {/*...*/}
    

    One could say:

    It doesn’t matter whether to use n++ or ++n as long as no second (related) variable is modified (based on n) within the same expression.


    The same rules apply to --n; and n--;, obviously.

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

Sidebar

Related Questions

Is there any difference in declaring objects in Objective-C between (1) and (2), besides
Is there any dramatic difference between functions and methods in Objective -C?
Possible Duplicate: Is there a difference between YES/NO,TRUE/FALSE and true/false in objective-c? I have
Is there any different between for(;;) and for(:) in terms of performance in Objective-C?
Is there any centralized repository of useful Objective-C / Cocoa libraries as there is
Are there any shortcuts to ( stringByAppendingString: ) string concatenation in Objective-C, or shortcuts
Is there any pdf which tells about coding guidelines in objective C. For Example...
Is there any way to create a property like this C# property in Objective-C?
Are there any packages that can take a directory full of source code (Objective-C
Are there any generally-accepted coding standards (naming, casting etc) that apply specifically to iPhone/Cocoa/Objective-C?

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.