Tag: C++ Programming

Effective C++: 55 Specific Ways to Improve Your Programs and Designs

The book opens with some hints for porting code from C to C++ and then moves on to the proper use of the new and delete operators in C++ for more robust memory management. The text then proceeds to class design, including the proper use of constructors, destructors, and overloaded operator functions for assignment within classes. (These guidelines ensure that you will create custom C++ classes that are fully functional data types, which can be copied and assigned just like built-in C++ classes.)

Read More

Data Structure Articles: Stack, Queue, Arrays and Linked List

The basic aim of mycplus.com website was to develop a website for students of C/C++ and data structures. There are lots of tutorials and source code covering different aspects of C/C++ programming language. Today I have decided to write few articles about data structures and their implementation in C/C++.

Read More

Microsoft Visual C++ .NET Deluxe Learning Edition

Teach yourself how to develop applications with Microsoft Visual C++ .NET-with tools and instruction, straight from the source! This DELUXE LEARNING EDITION contains Microsoft’s popular Step by Step tutorial and fully-supported, standard-edition software for Visual C++ .NET in a single, economical package.

Read More

Memory as a Programming Concept in C and C++

Assuming readers have a basic familiarity with C or C++, Frantisek Franek describes the programming techniques, methods and tools available to develop effective memory usage. The overwhelming majority of “bugs” and...

Read More