Each of the following class declarations or programs contain errors. Find as
many as possible.
class change
\\{
public:
int pennies;
int nickels; int dimes;
int quarters; Change ()
\(\\{\text { pennies }=\text { nickels }=\text { dimes }=\text { quarters }=0 ;
\quad\\}\)
\\[
\text { Change }(\text { int } p=100, \text { int } n=50, d=50, q=25)
\\]
3
void Change: : Change (int \(p, \text { int } n, d, q)\)
\\{
\\[
\begin{array}{l}
\text { pennies }=p \\
\text { nickels }=n \\
\text { dimes }=d
\end{array}
\\]
quarters \(=\mathrm{q}\)
\(t\)