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

Projections - C++ tutorial


Learn about Using Projects in OpenGL.
Category: C++ tutorials > Graphics - Difficulty:


More cool C++ tutorials:



Fast Introduction to C++
Fast Introduction to C++
This tutorial makes very short introduction to C++ programming, covering only the very basics.
Category: C++ tutorials > Basics - Difficulty:
Using vector instead of arrays to prevent most of memory leaks
Using vector instead of arrays to prevent most of memory leaks
Most of beginners define arrays of limited size such as:

int array[100]; // array that can accomodate 100 integer values

These are ok, but your requirement may be different, and you want your application to determines the size of array at runtime, so if your requirement is to use 10 elements only, that means 90 are unused but memory is still allocated for them while application is running. On other hand your application requires 110 elements to be saved, the last 10 will be unallocated spaces if array size is 100, and access to unallocated memory address may result in applciation crash and/or system level damage.
Category: C++ tutorials > Programming - Difficulty:
Classes
Classes
Introduction to Object Oriented Programming (OOP).
Category: C++ tutorials > Programming - Difficulty:
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:
Typecasting
Typecasting
Typecasting: making variables look like another data-type.
Category: C++ tutorials > Programming - Difficulty: