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;

}

};

This looks like homework. In fact I find many pages like https://www.cbseguess.com/ebooks/xii/computer_science1/constructors_destructors6.php which confirms this is your homework.

"This just appears to be a homework assignment. Please show your code of what you have so far and where you're stuck, so we can help you. We won't just do all of your work for you." is the common reply to posts with just homework.

Also, the rest of the code is missing so this alone does not tell what the lesson and assignment is trying to teach you.

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.