China Naming Network - Baby naming - Urgent! ! ! ! Rookie high score suggestion! ! About viusal C++ 6.0

Urgent! ! ! ! Rookie high score suggestion! ! About viusal C++ 6.0

After starting vc6.0, the menu file-> Create New, pop up the dialog box, select the project property page, select win32 console application on the left, give the name of the project on the right, the location is the storage directory, and then click OK.

Then file->; Create new, select the file property page in the dialog box, and create a new header file from the C/C++ header file on the left (the file name suffix is. H), C/C++ source file creates a new source file, the file name on the right gives the file a name, and location is the location where the file is stored. Click OK to create the new file.

Source file name suffix. C is a c language source file, and. Cpp or nothing is a C++ source file, which cannot be confused, because the compiler will automatically modify the function names in the C++ source program, which is allowed in C++ and not allowed in C language.

The advantage of using project is that many files related to this topic can be compiled together, such as inserting other source files into project and using the menu Project->; Add to project-> New (creating a new file in the project), file (inserting an existing file),

Compile and run, menu construction-> Compile source files and generate obj files.

Menu construction->; Generate exe file, build-& gt;; Debug is used to debug programs.