Which among the following is correct for the cla
ss defined below?
class student
{
int marks;
public: student () {}
student (int x)
{
marks = x;
}
};
void main()
{
student s1(100);
student s2();
student s3=100;
}
Answers
Answered by
0
you should go search on google or read it on you book
Answered by
0
Answer:
What are the options? mention it clearly
Similar questions
Science,
3 months ago
Math,
3 months ago
Science,
6 months ago
Science,
11 months ago
Computer Science,
11 months ago