Code.blocks latest download free installation tutorial and simple entry

Life is always a high spirited song for the wise, whose theme is always struggle. Life is always a high spirited song for the wise, whose theme is always struggle.

General steps for free installation : download the compressed package, unzip it and put it on the hard drive.

Recently, a friend asked me how to install code blocks. I have used the IDE of code blocks before. Although it is not as good as Clion, it is much better than dev c++. After all, the code blocks are still being updated, and they already have The 20.03 version is now available, and personally feel that code blocks are enough for beginners to get started.

If you want to learn more about C language or C++, I recommend using Clion for writing larger projects (it is available in the official account).

I took a look at the official website of code blocks today, and found that it is quite fragrant. Why, it actually launched a free installation version, which is closely following the trend of the times, not bad.

Why do you recommend the free installation version? First, it saves the cumbersome steps of installation after downloading. Second, it is easy to delete if you don't want to use it. Just drag the entire file into the trash box. Is it very worry-free?

The editor immediately put down a try. The interface looks clearer than before. With the editor’s 2.5k screen, it feels much better than before. After all, the editor’s requirements for image quality are quite high.

Here is a demonstration of how to use the free installation version (including video teaching):
First, enter the official website of code blocks: http://www.codeblocks.org/

On the homepage, we can learn that code blocks is an open source, cross-platform, free IDE for writing C and C++. It is said that this IDE is written in C++ (when can I write such an IDE).
Insert picture description here
Find Downloads on the page and click Download the binary release after entering.
Insert picture description here
Then we come to the download page, where you can see many versions, which also shows that it supports many compilers, such as GCC (MingW / GNU GCC), MSVC ++ and clang etc.

Finally, we choose to download the version of mingw-nosetup.zip, click on FossHUB to start the download (of course, if the computer is 32-bit, you have to choose the version with -32bit below). After the
Insert picture description here
download is completed, you will get a compressed package, and there will be For the following files, we first find the Program Files folder in the C drive or other disks, and then create a file named Code blocks, as follows, and then put all the decompressed files in. After putting
Insert picture description here
it in, find the file in the figure below , And then right-click-send to-desktop shortcut.
Insert picture description here
This way we are done, and eliminates those tedious installation steps. Is it more comfortable?
Insert picture description here
We open the code blocks, the screen is white, as for the black, I will try It's really not easy to use after a while, this is still a bad place and needs to be improved. But it is not a big problem for beginners.

Next, let's simply create a project, click on create a new project below.
Insert picture description here

After clicking, the following window will pop up, select the one circled below, and then go.
Insert picture description here

Go here to choose the C or C++ you need to write, and then the next step
Insert picture description here

This page is the name of your project and the file save path, and the page after the next step can be directly completed.
Insert picture description here

After finishing, click the place below to see the place to write the code.
Insert picture description here

This time it can be said to be hand-in-hand. If it is helpful, I can share it with everyone.

Guess you like

Origin blog.csdn.net/m0_46259251/article/details/105899782