1.

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 } };

A. Student s[3]={ s(394, 9); s(394, 9); s(394,9), };
B. Student s[2]={ s(394,9); s(222,5) };
C. Student s[2]={ s1(392,9); s2(222,5) };
D. Student s[2]={ s[392,9]; s2[222,5] };
Answer» C. Student s[2]={ s1(392,9); s2(222,5) };


Discussion

No Comment Found