C++ Source Code
Posted on
September 9th, 2008 0 Comments
first hint of object oriented programming
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* purpose of illustration....
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
This is a Graphical calculator and graphical dairy which uses files to store the diary information.
/*******************************************************
* 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
Posted on
September 9th, 2008 0 Comments
This graphic program can be used to store Personal infromation of people.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* ...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
You can do much more with the general I/O problem than just take standard I/O and turn it into a class.The iostreams classes are usually the first part of the C++ library that new C++ programmers learn to use. This chapter discusses how iostreams are an improvement over C’s stdio facilities and explores the behavior of file and string streams in addition...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
constructors and destructors
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* purpose of illustration. ...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
This sample illustrates how to programmatically change an IP address for a
specific network adapter on your machine. This program also demonstrates how
to retrieve existing network adapter IP configuration information.
IP configurations can be changed for a specific network adapter by using the
AddIpAddress() and DeleteIpAddress() Ip Helper API functions....
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
This graphics program reminds you of peoples’ birthdays.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* ...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Algorithms are at the core of computing. To be able to write an algorithm once and for all to work with any type of sequence makes your programs both simpler and safer. The ability to customize algorithms at runtime has revolutionalized software development.The subset of the standard C++ library known as the Standard Template Library (STL) was originally designed...
Read More |
Make a Comment