If I declare three variables in one line as below
ClassA a,b,c;
What is the order of their creation? Is the order defined by C++ standard or it depends on compiler?
If I declare three variables in one line as below
ClassA a,b,c;
What is the order of their creation? Is the order defined by C++ standard or it depends on compiler?