In development, C ++ and C are mixed.

Source: Internet
Author: User

In development, C ++ and C are mixed.

In actual development, C ++ and C are often mixed. The specific method is as follows:

The C1.c file is a C file written in C:

# Include

 
  
// Use C to write int I = 1; void func () {printf ("% d", ++ I );}

 
CPP1.cpp is a c ++ file written in C ++.
# Include

 
  
Using namespace std; // use C ++ to write // extern int I; extern void func (); int main () {func (); system ("PAUSE "); return 0 ;}

 

An error occurs after compilation because one file is a c file and the other is cpp, and the two are connected to the variable through extern.

Use the extern "C" keyword

Therefore, you must use the extern "C" keyword to compile the C file in the C ++ file. The declaration syntax is as follows:

Extern "C"

{

Content implemented in C Language

}

In the CPP1.cpp file:

# Include

 
  
Using namespace std; // use C ++ to write extern "C" {extern int I; extern void func () ;}int main () {func (); system ("PAUSE"); return 0 ;}

 

In this way, you can compile

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.