class Test
{ char Paper[20];
int Marks
public:
Test() //Function 1
{ strcpy(Paper,”Computer”);
Marks=0;
}
//Function 2
Test(char P[])
{ strcpy(Paper,P);
Marks=0;
}
//Function 3
Test(int M)
{ strcpy(Paper,”Computer”);
Marks=M;
}
Test(char P[],int M) //Function 4
{ strcpy(Paper,P);
Marks=M;
}
};
28-Ivan 0 Newbie Poster
rproffitt 2,693 https://5calls.org Moderator
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.