As we have seen creating a program
involves a variety of different types of files. Here is a summary of
some of the file types you will come across when creating a VC++ program
PROJNAME.DSW
This is the workspace file used within
the development environment. It organizes all the projects into a single
workspace.
PROJNAME.OPT
This is the workspace options file
used within the development environment. It stores all the user options
you create for your workspace, so that each time you open the project
workspace it has the look and feel you want and includes any customizations
you have made.
PROJNAME.DSP
This is the project file used within
the development environment. There will be a separate .DSP file for
each project you create.
PROJNAME.H
This is the main include file for
the program. It contains all global symbols and #include directives
for other header files.
PROJNAME.CPP
This file is the main program source file.
PROJNAME.OBJ
This file is the compiled code.
PROJNAME.EXE
This file is your completed program. It will
run independently of VC++