diff --git a/codesymbols/ReadMe.txt b/codesymbols/ReadMe.txt new file mode 100644 index 0000000..2eb488d --- /dev/null +++ b/codesymbols/ReadMe.txt @@ -0,0 +1,32 @@ +======================================================================== + CONSOLE APPLICATION : codesymbols Project Overview +======================================================================== + +AppWizard has created this codesymbols application for you. +This file contains a summary of what you will find in each of the files that +make up your codesymbols application. + + +codesymbols.vcproj + This is the main project file for VC++ projects generated using an Application Wizard. + It contains information about the version of Visual C++ that generated the file, and + information about the platforms, configurations, and project features selected with the + Application Wizard. + +codesymbols.cpp + This is the main application source file. + +///////////////////////////////////////////////////////////////////////////// +Other standard files: + +StdAfx.h, StdAfx.cpp + These files are used to build a precompiled header (PCH) file + named codesymbols.pch and a precompiled types file named StdAfx.obj. + +///////////////////////////////////////////////////////////////////////////// +Other notes: + +AppWizard uses "TODO:" comments to indicate parts of the source code you +should add to or customize. + +///////////////////////////////////////////////////////////////////////////// diff --git a/codesymbols/codesymbols.cpp b/codesymbols/codesymbols.cpp new file mode 100644 index 0000000..f52482b --- /dev/null +++ b/codesymbols/codesymbols.cpp @@ -0,0 +1,20 @@ +// codesymbols.cpp : Defines the entry point for the console application. +// + +#include "stdafx.h" +#include + +using namespace std; + +int _tmain(int argc, _TCHAR* argv[]) +{ + char s; + cout<<"Symbol:|\t|"<<"Code:\n"; + for(int i = 14; i < 128; i++) + { + cout<<(char)i<<"|\t|"<>s; + return 0; +} + diff --git a/codesymbols/codesymbols.exe b/codesymbols/codesymbols.exe new file mode 100644 index 0000000..db79923 Binary files /dev/null and b/codesymbols/codesymbols.exe differ diff --git a/codesymbols/codesymbols.ncb b/codesymbols/codesymbols.ncb new file mode 100644 index 0000000..24c71de Binary files /dev/null and b/codesymbols/codesymbols.ncb differ diff --git a/codesymbols/codesymbols.sln b/codesymbols/codesymbols.sln new file mode 100644 index 0000000..0df316b --- /dev/null +++ b/codesymbols/codesymbols.sln @@ -0,0 +1,21 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "codesymbols", "codesymbols.vcproj", "{DA7990D9-5B08-4426-9D57-C9A5F41D70AB}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {DA7990D9-5B08-4426-9D57-C9A5F41D70AB}.Debug.ActiveCfg = Debug|Win32 + {DA7990D9-5B08-4426-9D57-C9A5F41D70AB}.Debug.Build.0 = Debug|Win32 + {DA7990D9-5B08-4426-9D57-C9A5F41D70AB}.Release.ActiveCfg = Release|Win32 + {DA7990D9-5B08-4426-9D57-C9A5F41D70AB}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/codesymbols/codesymbols.suo b/codesymbols/codesymbols.suo new file mode 100644 index 0000000..69cb046 Binary files /dev/null and b/codesymbols/codesymbols.suo differ diff --git a/codesymbols/codesymbols.vcproj b/codesymbols/codesymbols.vcproj new file mode 100644 index 0000000..fe7a6c5 --- /dev/null +++ b/codesymbols/codesymbols.vcproj @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/codesymbols/stdafx.cpp b/codesymbols/stdafx.cpp new file mode 100644 index 0000000..d84f88c --- /dev/null +++ b/codesymbols/stdafx.cpp @@ -0,0 +1,8 @@ +// stdafx.cpp : source file that includes just the standard includes +// codesymbols.pch will be the pre-compiled header +// stdafx.obj will contain the pre-compiled type information + +#include "stdafx.h" + +// TODO: reference any additional headers you need in STDAFX.H +// and not in this file diff --git a/codesymbols/stdafx.h b/codesymbols/stdafx.h new file mode 100644 index 0000000..0f12692 --- /dev/null +++ b/codesymbols/stdafx.h @@ -0,0 +1,12 @@ +// stdafx.h : include file for standard system include files, +// or project specific include files that are used frequently, but +// are changed infrequently +// + +#pragma once + + +#include +#include + +// TODO: reference additional headers your program requires here