Home>Article>Backend Development> What is the difference between vc++ and c++?
Difference: C is a programming language and a syntax standard used globally; VC is Microsoft's free C development tool with an integrated development environment. Programmers can write source code text in VC. Compile and package it into a CPU-executable machine program.
vcGenerally refers to Microsoft Visual C, which is Microsoft’s free C development tool. It has an integrated development environment and can provide editing C language , C and C/CLI and other programming languages. VC integrates convenient debugging tools, especially the Microsoft Windows operating system application programming interface (Windows API), 3D animation DirectX API, and Microsoft .NET framework.
Cis the inheritance of C language. It can not only perform procedural programming of C language, but also perform object-based programming characterized by abstract data types. It can also perform Object-oriented programming characterized by inheritance and polymorphism. While C is good at object-oriented programming, it can also perform process-based programming. Therefore, C is big or small in terms of the size of the problem it can adapt to.
The difference between vc and c:
C is a programming language and a syntax standard used globally
VC is an integration Development environment, programmers can write source code text in the integrated development environment, compile and package it into a CPU-executable machine program, and Microsoft adds some functions expanded by its own company based on the C language. VC can be simply regarded as a mixture of C, syntax functions developed by Microsoft, compiler developed by Microsoft, and window operating system.
For more programming-related knowledge, please visit:Introduction to Programming! !
The above is the detailed content of What is the difference between vc++ and c++?. For more information, please follow other related articles on the PHP Chinese website!