Hey guys, Quick question i have this code and what i want to do is create a deep copy of class B. Now I tried doing this with the new operator...
I have a class class Point2D { double x[2]; public: .... } I want to implement a function that can take in as input point2Dsort(...
I can do this double T[2][3] = { {1,3,4},{7,8,9}}; but not this double T[2][3]; T = { { a,b,c} , {d,e,f} } Why is that? Will I have...
Separate names with a comma.