arraysUsing 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 memberProtected members are only accessible from within the class itself, from a derived class or from a f...
Adding symbolsIf I understood you correctly, an escape character (a back slash) will solve your problem. [code]std...
Help in making a Caesar Cipher makerIn lines 1 and 14 you should check if the characters is [u]between[/u] ([tt]'a' < ch < 'z' OR 'A' < ...