Extern in function declaration

Source: Internet
Author: User

The extern keyword is not required for function declaration. Because:

Int func ();

Int func ()
{
}

The two above are very clear. The first one is declaration, and the second is definition, because function declaration is followed by semicolons (;) and Function Definition parameters are followed by curly brackets, this is a good judgment for both people and compilers.

If the above method is used to declare and define variables, they cannot be clearly defined.

Int I;

Therefore, for variable declaration, the extern keyword must be used, that is:

Extern int I;

In this way, it is differentiated from the definition.

To be consistent, you can also use the extern keyword for the function declaration, but this is not necessary and is not recommended.

The above content is taken from the ansi c language standard description.

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.