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

XOR Encryption Tutorial tutorial description
| Added on | 04.03.2008 |
| Total clicks | 105 |
| Tutorial Rating | 0 |
| Tutorial Difficulty | 0 |
XOR Encryption Tutorial
More cool C++ tutorials:

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.

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.

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.

This is the third part and the biggest of the small book named 'Understanding C++ data types'. This part covers the 'integer' data type.



