Upcasting and downcasting Thank you for clarifying my doubts!
Upcasting and downcasting Base* BasePtr = &d1; Base& BaseRef = d1; no new object is being created during upcasting or down...
Upcasting and downcasting @Ganado yes, my question is you cannot cast an object or pointer of an object to another object bu...
Upcasting and downcasting [code] Derived d1; Base* BasePtr = &d1; Base& BaseRef = d1; Derived* d2 = new Derived Base* Bas...
is there any bias random number generator in c+++Let's say I have I need to generate 100 numbers with minimum value of 0 and maximum value of 1440. T...
This user does not accept Private Messages