Solved

Consider the Class Definition

Question 5

Essay

Consider the class definition:
class IntPair
{
int first;
int second;
public:
IntPair(int firstValue,int secondValue);
// prefix operator++ here
// postfix operator ++ here
int getFirst( )const;
int getSecond( )const;
};
a)Give declarations for prefix and postfix versions of operator++
b)Give definitions for prefix and postfix versions of operator++

Correct Answer:

verifed

Verified

a)declarations:
const IntPair operator++...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions