C language: Common predefined macros

Source: Internet
Author: User

Common predefined macros
 
All compilers that follow the iso c Standard must define the following macros. The macro names start with two underscores and end with two underscores.
 
1. _ DATE __
"Alternative text" is a string literal with a compilation date in the format of "mm dd yyyy" (for example, "Mar 19 2006 "). If the date is less than 10 days, place a space character in front of the day.
 
2. _ FILE __
The literal value of this string contains the name of the current source code file.
 
3. _ LINE __
An integer constant whose value is the current source code LINE number (containing the LINE code indicated by _ LINE _ macro), starting from the file header.
_ LINE _ and _ FILE _ are convenient for printing debugging information.
Printf ("line = % d \ n", _ LINE __);
Printf ("file = % s \ n", _ FILE __);
 
4. _ TIME __
The literal value of this string contains the Compilation Time in the format of "hh: mm: ss" (example: "08:00:59 ").
5. _ STDC __
Integer constant 1, indicating that the compiler complies with the ISOC standard.



From the happy life of codoon

Related Article

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.