Tutorial search
Tutorials
Stuff
Affiliates
Photoshop Templates
Featured Photoshop templates - professional ready to use designs for your next project.
View all templates
The Art of Writing Maintainable Code - C++ tutorial

The Art of Writing Maintainable Code tutorial description
| Added on | 04.03.2008 |
| Total clicks | 27 |
| Tutorial Rating | 7 |
| Tutorial Difficulty | 3 |
The Art of Writing Maintainable Code
More cool C++ tutorials:

The general format of the for loop is shown in the figure, expl is an assignment expression that is used for initializing a loop index.

Many applications need to communicate with other applications to exchange data or store data in the hard disk. The .Net framework has made these tasks quite simple by including the serialization technique, which can convert objects into binary, SOAP(Simple Object Access Protocol ) or XML documents in order to provide a convenient way for storing and transferring information. Besides the three mentioned format types you can also implement custom serialization to take complete control of the serialization output.

This tutorial in an implementation of a singly linked list of integers.

Sequential lists are collection of objects that can be entered or extracted in a sequential way. They don’t provide access to objects in the middle on the list. You can only access a specific object each time you extract it. The two classes named “Queue” and ”Stack” which belong to the “System.Collections” namespace provide you with this kind of functionality, each of them in a slightly different way. The Queue class offers you access to the first object on the list, whereas the Stack class offers you access to the last object on the list. By first and last we mean the first and last object that entered the list. So, the Queue class is a First-in, First-out collection(FIFO Collection) whereas the Stack class is a Last-in, First-out(LIFO Collection). In this tutorial you will create and use both classes to see how they behave when entering and extracting data. You will usually work with such collections with temporary and disposable data. For a more permanent use, arrays provide much better functionality.

Different Loops in the C language - A detailed tutorial about loops in C





