Which among following is correct for initializing the class below?
class student{
int marks;
int cgpa;
public: student(int i, int j){
marks=I;
cgpa=j
}
};
- student s[3]={ s(394, 9); s(394, 9); s(394,9); };
- student s[2]={ s(394,9), s(222,5) };
- student s[2]={ s1(392,9), s2(222,5) };
- student s[2]={ s[392,9], s2[222,5] };
(b).student s[2]={ s(394,9), s(222,5) };
need an explanation for this answer? contact us directly to get an explanation for this answer