The application scope analysis of the IF statement of VC + + _c language

Source: Internet
Author: User

The example of this article succinctly illustrates the application scope of if in VC + +, through a section of If program code to explain the law of if statement execution, to go down in detail to see this simple test code:

# include <stdio.h>
int main (void)
{
 if (1 > 2)
 printf ("aaaa\n");
 printf ("bbbb\n");
 return 0;
}

I believe a lot of readers will think that the program is running at 0, and in fact the output of the program code in vc++6.0 is: bbbb.

It can be seen thatif the default case can only control the execution of a statement or not to execute, but not to select a statement to execute, generally to execute the most subsequent statements.

It is hoped that the example described in this paper can help readers to understand the principle and usage of the IF statement in VC + +.

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.