Re: How did you guys go?
i found that quite easy, did anyone notice the simultaneous equations in Q7 that you could use to solve b->f using x^n - 1^x =0?
And did anyone else notice that on Q5 (c), that C1's diameter was twice the size of C2's?
I'm quite sure (most) C++ compilers include the C99 additions.
That above example could be done via typecasting, too.
Using pointers to variables:
struct VariableControl {
char* Name;
void* Function;
VariableControl(char* Init_Name) // an overloaded constructor
Name = new...
I'm a necromancer.
Partially taken out of "C++: The Complete Reference, fourth edition" by Herbert Schildt
C++ supports OOP (Object Orented Programming).
C++ supports Polymorphism (which is characterised by the phrase "One interface, multiple methods")
C++ supports RTTI (Run Time Type...