After compiling, the program will generate multiple files in the Target Path Debug folder (*.exe,*.ilk,*.obj,*.pch,*.pdb,*.idb,*,pdb), *.CPP,*.DSP,*.NCB,*.PLG
*.exe: Is the generated executable file
*.ilk: The connector automatically generates a ilk file when the incremental compilation connection is selected, recording connection information
*.obj: Is the target file, the product after the source program compiles
*.PCH: The full name is the precompiled header, which is the precompiled header file, which is automatically generated when the/yu switch is specified at compile time
*.IDB: File saving information, so that the compiler compiles only the most recently changed functions and only the most recent class definition of the changed source files, to improve the compilation speed
*.pdb: Full name is the program database, that is, the application data file, used to record debugging information, is a very important file, without him, the program can not be properly debugged
*.DSP: (full name is developer Studio Project) is also a profile, but she records all the configuration information for a project, plain text files
*.NCB: (full name no Compile Browser) abbreviation, which stored for ClassView, WizardBar and Component Gallery use of information, by the VC development environment automatically generated
*.PLG: is actually a hypertext file that can be opened with Internet Explorer, which records the build process and is a log-type file
*.cpp: is C + + source code file
VC + + 6.0 compiled post-generated files