I want to learn C language secretly, and then shock everyone (day one)

The title is not intended to offend, I just think this ad is fun

Okay, let’s get to the point

Development environment

Introduction to mainstream development tools

Several mainstream development tools commonly used in C language

  • Visual Studio

Visual Studio (VS for short) is an integrated development environment released by Microsoft Corporation. It includes most of the tools needed throughout the software life cycle.

  • Code::Block

Code::Block is a free cross-platform IDE. The biggest feature is that it supports the extension of the IDE's own functions through plug-ins.

  • Eclipse

Eclipse is a widely used free cross-platform IDE. Users can install a variety of different plug-ins to extend the functions of Eclipse as needed.

  • Vim

Vim itself is not an IDE for developing computer programs, but a very powerful text editor, which is an upgraded version of the Vi editor on UNIX systems.

Dev C++ installation

Dev C++ is a free and open source C/C++ IDE with built-in GCC compiler (the GCC compiler

Guess you like

Origin blog.csdn.net/weixin_54707168/article/details/114967962