Online compiler: https://www.onlinegdb.com/online_c++_compil…
Online compiler: https://www.onlinegdb.com/online_c++_compilerComplete a class Student ( access specifier is public, no need for getters/setters ). Copy and paste from the online compiler to answer each question accordingly. Do NOT change int main(); Your Output must look like the sample output provided.Rough Sketch ( Copy and paste to online compiler and complete the implementation of the class ) #include #include #include using namespace std; class Student{ public: //provide attributes // provide constructor //provide remaining implementation void outputStudent() { } //provide other functions as requested. }; //provide remaining implementationvoid printStudents(vector & students){ cout
Read Details