Pre-processor commands

Source: Internet
Author: User
1. # define defines constants during compilation
2. # UNDEF cancel constants during compilation
3. # ifdef (Conditional compilation)
# Else
# Endif

Take the following example: # UNDEF debug // cancel the DEBUG constant
# Define debug // defines the DEBUG constant to express debugging results when executing the program
# Ifdef debug // If the DEBUG constant has been defined (during debugging)
# Define dprintk (x) {printk (_ function _ "(% d):" ,__ line _); printk (# X );} // defines the dprintk constant and outputs the current function, the current row.
# Else // If the DEBUG constant is not defined, the current function and other debugging results will not be output.
# Define dprintk (x) (void) (0)
# Endif

_ FUNCTION __,__ line _ is a predefined macro. in addition, "X... ", printk (# X) expresses its own results. dprintk ("ADC opened \ n"); // the result after execution is: "current function row: ADC opened"

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.