Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

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


Unmaintainable code is a big problem in the business world (where programs can cost millions of dollars). Knowing how to write maintainable code is a great way to solve these problems. This programming tutorial provides three tips on writing maintainable code.
Category: C++ tutorials > Development - Difficulty:


More cool C++ tutorials:



The for loop - C++
The for loop - C++
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.
Category: C++ tutorials > Basics - Difficulty:
 Serialization In C#
Serialization In C#
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.
Category: C++ tutorials > Networking - Difficulty:
An Implementation of a Singly Linked List of Integers
An Implementation of a Singly Linked List of Integers
This tutorial in an implementation of a singly linked list of integers.
Category: C++ tutorials > Programming - Difficulty:
Sequental Lists The Queue and Stack Class With C#
Sequental Lists The Queue and Stack Class With C#
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.
Category: C++ tutorials > Programming - Difficulty:
Different Loops in the C language - A detailed tutorial about loops in C
Different Loops in the C language - A detailed tutorial about loops in C
Different Loops in the C language - A detailed tutorial about loops in C
Category: C++ tutorials > Games - Difficulty: