Error c2143: syntax error: the solution to the compilation error is missing "{" (before ":").

Source: Internet
Author: User

Recently writtenProgramThe following problems are encountered:

During compilation, the compiler prompts a bunch of the following errors:

C:/program files/Microsoft Visual Studio. NET 2003/vc7/include/cerrno (18): Error c2143: syntax error: "{" missing (before)
After searching for a long time, the final reason is: I used the C ++ library function in my source file, but I wrote the extension name of this source file. c instead. CPP, whose suffix is written. solve the problem after CPP. for exampleCode:

# Include <iostream>
# Include <stdio. h>
Using namespace STD;

Void main ()
{
Printf ("% s/n", "test1 ");
Cout <"Test2" <Endl;
}

If the source file is written as "test. c", the compiler will prompt the above error. If the source file is written as "test. cpp.

Conclusion: if the source file contains a C ++ library or function, you must write the suffix of the file name as. cpp instead of. C.

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.