C and C++ Programming Resources

Custom Search

constructors and destructors

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

IP configuration

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

searching and sorting in C++

Posted on September 9th, 2008 0 Comments

IN THIS PROJECT I HAVE INCLUDED ALL TYPES OF SEARCHING and SORTING. /******************************************************* * 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

The Standard C++ Library: Generic algorithms

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

Simple class program

Posted on September 9th, 2008 1 Comment

Simple class program /******************************************************* * 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

Client and Overlapped Server and Server and ThreadServer

Posted on September 9th, 2008 0 Comments

This program is a simple named pipe client that demonstrates the API calls needed to successfully develop a basic named pipe client application. When this application successfully connects to a named pipe, the message “This is a test” is written to the server. There are four basic steps needed to implement a client: Wait for a Named Pipe...
Read More | Make a Comment

Address Book

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

The Standard C++ Library: Strings

Posted on September 9th, 2008 0 Comments

Standard C++ not only incorporates all the Standard C libraries (with small additions and changes to support type safety), it also adds libraries of its own. These libraries are far more powerful than those in Standard C; the leverage you get from them is analogous to the leverage you get from changing from C to C++.The string class member functions provide a...
Read More | Make a Comment


Page 10 of 12« First...3456789101112