Home > Article > Computer Tutorials > How to compile C language programs in the Chinese version of Microsoft Visual C 2010 Learning Edition?
File->New->Project
In the opened new project dialog box, select CLR under Visual C in the leftmost column, and then select CLR Empty Application
in the area on the rightAnd fill in the project name (Name), project location (Location) and solution name (Solution Name) in the three text boxes below
Click OK
After opening the newly created project in the browser, right-click the project name and select Properties. In the dialog box that opens, find the General option under Configuration Properties. Find Common Language Runtime Support (CLR support) in the dialog box on the right and set it to "No Common Language Runtime Support". Finally click OK and exit the dialog box.
Next, right-click Source Files in the project, select Add->New Item..., select "C File (.cpp)" in the dialog box, and enter the file name ending with .c. After clicking Add, you can add C language code to this file. Press F5 to debug and run.
2008 is almost the same~~
Open the main interface of VS2008, and then select File→New→Project
Pop up the dialog box as shown
Select VC →win32 in the project type, then select win32 console application in the template on the right, and then enter a name below (project name, no need to include .C), select the save location and confirm
Okay, a dialog box pops up, ignore it, next step
Next, please note that in this dialog box, the application type must be selected as a console application, and the additional options must be selected as "Empty Project". Then click Done.
Then the dialog box disappears and you return to the VS main interface. At this time, there will be more "Solution Manager" on the left and right sides as shown in the toolbar
Right-click on the source file and select "Add → New Item". Note here that if you already have a written C source file, then select "Existing Item"
Another dialog box opens,
Regardless of the left one, select the C file (Note 1) in the template on the right, enter the name of the source file plus .C (Note 2) in the name below, and use the default save location. Then click "Add".
Okay, the editing page is out, everyone can write code. Here is a program "hello world" that all programmers must write no matter what language they learn^_^
As you can see here, VS2008 can intelligently mark function parameters and function bodies for easy viewing and modification. Much more convenient than VC6.0.
tips: The purpose of system("pause") is to "pause" the program when it reaches this position
After editing, then select Debug, or just click the green small arrow button (Note 3) to view the program running results
Finally, don’t forget to save
1. Microsoft Visual Studio is a program development platform software developed by Microsoft. It is very powerful and easy to use. It is very popular among the majority of program developers. Microsoft Visual Studio 2010 is simple to operate, saves us a lot of time when writing programs, and makes it convenient for us to debug programs. The basic usage process is as follows;
2. First, create a new project. This prompt window will pop up after we open the program. What needs to be noted here is that the file name and file path must develop a good habit. The name should be based on the function or content of the program. The path should be placed in a special folder. You can also select New in File-New-Project. Project type;
3. Microsoft Visual Studio common functions--Toolbox
When we design the form, the toolbox is a tool that allows us to see what we get. We can drag controls directly in it. First, open the trial view - toolbox. Then fix it to the left end of the window, find the control we need in the toolbox, and drag it directly into the form program. To adjust the size, just place the mouse on the edge of the control. The size of the form can also be adjusted.
4. Commonly used functions of Microsoft Visual Studio-Properties Panel
After we add the control, we need to set the properties of the control, such as name, color, etc. At this time we need to use a very important panel - the properties panel; right-click the control to be edited and select Properties, then various properties of the control will appear in the lower right corner. Just set it according to the needs of the program.
5. Microsoft Visual Studio common functions--debugging
When our program is designed or halfway through writing, if we want to check how our program is running, we can click the debug button, or directly press F5 or ctrl F5 (commonly used in console programs). Click to stop debugging to return to the editing state.
6. Microsoft Visual Studio Common Functions--Publish
We want to publish the written program. At this time, find Generate-Publish to publish the program.
The above is the detailed content of How to compile C language programs in the Chinese version of Microsoft Visual C 2010 Learning Edition?. For more information, please follow other related articles on the PHP Chinese website!