User profile: chungolongo

User info
User name:chungolongo
History
Joined:
Number of posts:19
Latest posts:

OOP
I can wholeheartedly recommend: "C++ How to Program" - 6th edition, by Deitel & Deitel. Best book o...

Whitespace
[code]\n[/code] will do the trick.

How to calculate average?
% (modulo) finds the remainder. http://en.wikipedia.org/wiki/Modulo_operator Use division instea...

Simple pointer example
Pointer syntax: [code]type *name[/code] A pointer is a variable that point to an adress in memor...

Class function malfunctioning
[quote]Right, the problem has to do with mixing getline and operator>>. I'm just addressing the fact...