Tutorial search

Tutorials
Stuff
Affiliates

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

C Simple Pointers - An introduction to pointers - C++ tutorial


C Simple Pointers - An introduction to pointers
Category: C++ tutorials > Games - Difficulty:

Added on12.04.2008
Total clicks0
Tutorial Rating0
Tutorial Difficulty0

More cool C++ tutorials:



Basics Of C++ - Get started on programming with C++
Basics Of C++ - Get started on programming with C++
Basics Of C++ - Get started on programming with C++
Category: C++ tutorials > Basics - Difficulty:
Horner's Algorithm
Horner's Algorithm
This tutorial will teach you how to run the Horner's algorithm, for number conversion. It converts numbers from a specified numeric system into decimal, without using powers, which makes the whole process faster. The tutorial won't explain why these arithmetic calculations do so, but just how to run them.
Category: C++ tutorials > Development - 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:
Lesson 2 - User Input and Variables - By Fuse and Phial!
Lesson 2 - User Input and Variables - By Fuse and Phial!
The second tutorial in my series, be sure to check out the programming section on my forums at http://NextGenScene.net
Category: C++ tutorials > Programming - Difficulty:
Understanding C++ data types I
Understanding C++ data types I
A small book for those beginners in C++ or even in programming who didn’t understand C++ data types. This is meant to be a patch to other books, that cover the basics of C++. Data types can be a little tricky sometimes, and difficult to understand, this book explains how data types work, and also shows you how to use them by giving examples.
Category: C++ tutorials > Basics - Difficulty: