User profile: Zeillinger

User info
User name:Zeillinger
History
Joined:
Number of posts:121
Latest posts:

arrays
Using a loop. [code]int array[4]; for (int i = 0; i < 4; i++) { cin >> array[i]; }[/code]

Please review my code.
[b]1)[/b] [tt]Add[/tt] should be declared before it is used (used on line 14 and declared on 18). Yo...

Problems with accessing to protected member
Protected members are only accessible from within the class itself, from a derived class or from a f...

Adding symbols
If I understood you correctly, an escape character (a back slash) will solve your problem. [code]std...

Help in making a Caesar Cipher maker
In lines 1 and 14 you should check if the characters is [u]between[/u] ([tt]'a' < ch < 'z' OR 'A' < ...