++ Labs

Source: Internet
Author: User

# Include <stdio. h> int main () {int A = 4; printf ("A = 4 \ n"); printf ("(a) * (++) = % d \ TA = % d \ n ", (a) * (++ A), a); A = 4; printf (" (++) * (++ A) = % d \ TA = % d \ n ", (++ A) * (++ A), a); A = 4; printf ("(a ++) * (a ++) = % d \ TA = % d \ n", (a ++) * (a ++ ), a); A = 4; printf ("(a ++) * (A) = % d \ TA = % d \ n", (a ++) * (a), a); scanf ("% d", & );}

Disassembly code:

Running result:

The result shows that if a pre-auto-incrementing symbol exists in an expression, the auto-incrementing operation is performed in sequence, and the value of the expression is calculated using the auto-incrementing value. For example, when a = 4 (a) * (++ A) is 25, not 4*5 = 20. Similarly, the post-auto-incrementing symbol uses the original value to calculate the value of the expression, and then executes the auto-incrementing operation in sequence.

Have you said this today?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.