User profile: Dash

User info
User name:Dash
History
Joined:
Number of posts:126
Latest posts:

Bool
They can be used the same way. [code] bool isTrue() { bool a; // do something with a; ...

Bool
[code]bool isTrue = false; if(isTrue) { //do something } [/code]

Proceed y/n ?
Please use code tags. Sorry, i forgot to add a semi colon after the do-while loop. I corrected my co...

Proceed y/n ?
I suppose you're trying to do something like this : - [code]char response; do { cout<<"Please enter...

how do i write a program like this?
Why not use strings ? [code]string name; getline(cin, string); cout << name.size() << endl;[/code...