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

Value Data Types - C++ tutorial


C# distinguishes between two (2) different data types categories: value and reference types. Value data types directly store their value while reference data types store a reference to their value. Value types are stored on the stack whereas reference types are stored on the managed heap.
Category: C++ tutorials > Basics - Difficulty:


More cool C++ tutorials:



Simple and effective tutorial of multithreading with Win32
Simple and effective tutorial of multithreading with Win32
Simple and effective tutorial of multithreading with Win32
Category: C++ tutorials > Games - Difficulty:
 WHILE Loops In C#
WHILE Loops In C#
C# provides several mechanisms for flow control in a program. The loops in C# allow you to execute a block of code repeatedly, until a certain condition is met. This condition can be the number of repetition, a variable taking a specified value or something completely different. The while loop is a pre-test loop and is used to execute a block of code for a number of times not known before the loop begins. The do..while loop is a post-test loop and is used for the same purposes as the while loop.
Category: C++ tutorials > Basics - Difficulty:
Making Console output text colored in C++
Making Console output text colored in C++
Making Console output text colored in C++
Category: C++ tutorials > Games - Difficulty:
Switch Case
Switch Case
About the switch case structure.
Category: C++ tutorials > Programming - Difficulty:
 STRUCTS In C#
STRUCTS In C#
Structs, similar to classes, are used to define various objects in your code. They are stored on the stack, rather than in the managed heap. This means that they are value-type objects and thus, when you pass a struct as a parameter in a function, a copy of the object is actually passed to that function. This can affect the performance of your code if you use structs for large objects. However, since the .Net does not bring in the managed heap, structs are more suitable for small objects of limited functionality and with no inheritance capabilities.
Category: C++ tutorials > Basics - Difficulty: