C and C++ Programming Resources

Share/Save/Bookmark
Custom Search

C++ Source Code

Inheritance example

Posted on October 17th, 2008 0 Comments

Inheritance example
Simpler methods in the classes have been changed to inline code to shorten the file considerably. In a practical programming situation, methods that are this short should be programmed inline since the actual code to return a simple value is shorter than the code required to send a message to a non-inline method. /******************************************************* *... 
Read More | Make a Comment

Function name overloading

Posted on October 14th, 2008 0 Comments

Function name overloading
An example of function name overloading within a C++ class. In this program the constructor is overloaded as well as one of the methods to illustrate what can be done in C++ programming language. /******************************************************* * MYCPLUS Sample Code - http://www.mycplus.com * * ... 
Read More | Make a Comment

Car Race Game

Posted on September 9th, 2008 0 Comments

You have to reach the finish line before the time goes out. There are many hurdles in your way. So be careful. /******************************************************* * MYCPLUS Sample Code - http://www.mycplus.com * * * * This code is made available as a service to our * * visitors and is provided... 
Read More | Make a Comment

Information/Data Protection

Posted on September 9th, 2008 0 Comments

Example of data protection in a very simple? program. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 /******************************************************* * MYCPLUS... 
Read More | Make a Comment

Design patterns

Posted on September 9th, 2008 0 Comments

“describe a problem which occurs over and over again in our environment, and then describe the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice” – Christopher AlexanderThis source code introduces the important and yet nontraditional “patterns”... 
Read More | Make a Comment

Message Digest Utility

Posted on September 9th, 2008 0 Comments

This is a special console based utility which will calculate the Message Digest, Base 64 Encoding and Decoding, Checks the Message Digest and give output through file or through screen you can use this class to make the dll. Help is included in the main.cpp creating the .exe include all the file in VC++ 6.0 , compile Main.cpp and build the .exe file, exclude... 
Read More | Make a Comment

Knight’s tour without Graphic

Posted on September 9th, 2008 0 Comments

this program is tour of knight on 64 square of chess board 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 /******************************************************* *... 
Read More | Make a Comment

Knight’s tour without Graphic

Posted on September 9th, 2008 0 Comments

this program is tour of knight on 64 square of chess board 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 /******************************************************* *... 
Read More | Make a Comment