User profile: LazaroBinda

User info
User name:LazaroBinda
History
Joined:
Number of posts:10
Latest posts:

Copy and Overloading constructors
That's right! [code] CandidateList(const CandidateList& other); //Copy Constru...

Question about goto Statement
It's because you are using || instead &&. If you had: [code] if (buffer != 'A' || buffer != 'B') ...

just a question
Imagine you wanna know the result of 5^3. So, you use: [code] recursive(5, 3); [/code] In the fir...

just a question
No. That's a example of a function called many times into a loop for. An example of a recursive fun...

Use fgets and strlen to calculate the length of a txetstring
When you use fgets and hit "Enter", a newline charater is included at end of your buffer.