cplusplus.com
C++ : Users : Warnis
 
cplusplus.com
Information
Documentation
Reference
Articles
Forum
User: Warnis
Public profile
Send private message


User profile: Warnis

User info
User name:Warnis
History
Joined:
Number of posts:186
Latest posts:

Issue with strings
It's pretty simple really, whenever you want to convert a digit in the form of a char to an int just...

Issue with strings
You're converting a char into an int, chars use the ASCII table where '3' happens to be 51. If you ...

trying If Statements but got 8 errors dont understand some of em
[code]if ( age< 100)( cout<<"You are pretty young!\n"; ) else (age ==100)( cout<<"You...

[HELP] On my school assignment
For the function compareAnswers you're going to need a loop (I would say the 'For' loop, but it look...

Using a loop
The general opinion is that if you have a set number of times you want to loop you normally use a fo...