C language Review (2) macro definition and Conditional compilation

Source: Internet
Author: User

Macro definition:
#Define g 9.8

.....

......

# UNDEFG

Macro-Defined Scope

Note:

# Define AB (x) x * X-2 * x + 10

AB (1 + 2) = 1 + 2*1 + 2-2*1 + 2 + 10 = 15

AB (3) = 3*3-2*3 + 10 = 13

AB (3) * 10 = 3*3-2*3 + 10*10 = 103

 

# Define AB (x) * (x)-2 * (x) + 10)

AB (1 + 2) = (1 + 2) * (1 + 2) + 10 = 13

AB (3) * 10 = (3*3-2*3 + 10) * 10 = 130

 

Macro is just a simple replacement of characters. Macro expansion is performed before compilation, and no memory units are allocated during expansion. The macro does not have a type problem. The macro name does not have a type. Its parameters are of no type. It is just a symbol. You can include the specified string when expanding.

Conditional compilation:

# Define debug

# Ifdef debug

....

# Else

......

# Endif

# If

# Else

# Endif

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.