User: elementary

  • Public profile

User profile: elementary

User info
User name:elementary
History
Joined:
Number of posts:13
Latest posts:

Subclass unable to access parent class C++ Inheritance, Virtuality and Polymorphism
Shape2D aShape2D[100]; This array is problematic. You want an array of different shapes, but this i...

How to pass type char in function with parameters
I recommend you read on Pointers and arrays here http://cplusplus.com/doc/tutorial/pointers/ But es...

Need help with sorting array
Use an array of integers. [code] int wasReadIn[50]; [/code] Instead of setting true/false, add 1 t...

Subclass unable to access parent class C++ Inheritance, Virtuality and Polymorphism
What exactly is variable aSquare? Shouldn't you just call aShape2D[0].computeArea() ? The biggest ...

too few arguments to function 'int getData (int)'
Function prototype for void alpha() is wrong. Wrong: void alpha(int [][COLUMNS]); Correct: void al...

This user does not accept Private Messages