Tutorial search

Tutorials
Stuff
Affiliates

Photoshop Templates


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

View all templates

XOR Encryption Tutorial - C++ tutorial


Learn the basics to xor encryption and write your own program. Some programming knowledge is required such as C/C++ languages.
Category: C++ tutorials > Security - Difficulty:

More cool C++ tutorials:



The SWITCH Statement In C#
The SWITCH Statement In C#
The switch statement offers the programmer the capability to choose a specific block of code from a set of mutually exclusive ones. It is similar but not identical to the if statement. The block of code that will be chosen is not known before the execution of the program. This can be for example due to different windows platform or specific localization settings of each country.
Category: C++ tutorials > Basics - Difficulty:
Continue statement - C++
Continue statement - C++
The continue statement works similar to the break statement. Instead of forcing termination, the continue statement forces the next iteration of the loop to take place skipping any code in between.
Category: C++ tutorials > Basics - Difficulty:
Getting started with OpenGL
Getting started with OpenGL
Getting started with OpenGL; The first OpenGL program.
Category: C++ tutorials > Graphics - Difficulty:
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:
Understanding C++ data types III
Understanding C++ data types III
This is the third part and the biggest of the small book named 'Understanding C++ data types'. This part covers the 'integer' data type.
Category: C++ tutorials > Basics - Difficulty: