Development Environment Configuration Introduction (first job)

1 Why Part C language

The first is their own learning freshman in C language, although four years have passed, but also how much still remember some;

And then selected after consultation brother and mentor programming language is C language programming experience almost approximately equal to 0, just write some simple language, sizes, summing the like;

2 The programming language used for the VS2019, Visual C ++ 6.0 and before I use. This is the big difference VC6.0 released in 1998, Visual C ++ integrated development environment, compatibility is poor; Visual Studio 2019 version of this compatibility, and is the most advanced compiler, Visual Studio is a multi-language integrated development environment , supports C #, C ++, VB and other languages ​​development;

3 version control tools and platforms, and integration of integrated development environment analysis, basic operations introduced, given the link code repository and user name to give a sample project has recorded multiple submissions.

 I use this version control tools and platform for Visual Studio 2019, this version faster and easier to use. And it can be well and good GitHub online repository with the use; improved code refactoring to keep the code clean ,, and ease of maintenance. As well as document the health indicator and clean-up options to help users more easily identify code issues.

Written in C with VS2019 basic operation:

Enter the interface

Select Create a new project;

Select an empty project, the next step;

Fill in the project name;

Adding file c: at the left of the solutions directory, select the source file, right-click and choose Add -> New Item; 1 select C ++ files (either write c or c ++); 2 under the name suffix is ​​.cpp, we need to modify the code to .c write c

Tested in hello.c

Code repository link:

https://gitee.com/wang_dd/wang_dis_small_warehouse

Username: Wang Di

5 personal experience

The first is the process of installing the software, the process is a long time, and a good selection of software have a good help for their code; secondly encounter problems in the new software use, multi-purpose Baidu encounter problems, such as VC6 .0scanf changed to scanf_s in vs2019 in. 

Guess you like

Origin www.cnblogs.com/wangddd/p/11680770.html