User profile: AbstractionAnon

User info
User name:AbstractionAnon
History
Joined:
Number of posts:959
Latest posts:

Need help fixing a few errors in my program.
Not sure if what you posted is the extent of your code. If it is, the linker errors are from not i...

Need help fixing a few errors in my program.
Line 67, you're attempting to implement Monster::Level1 (), but there is no such function in the cla...

If Else - Else not working.
What do you mean "getting stuck"? You might want to include a \n in line 12 to flush the print b...

Converting a memory Address into an int
Just treat it as a pointer. You can subtract two pointers of the same type and assign the result to...

Using a template class
[code] template <typename T> void Homework<T>::SetName(T val) { if(val == "") { name = " ";...