Generation

generate functionSun, 23 Apr 2023

كود يحتوي على وراثة

#include <iostream> using namespace std; class Student { public: int age; int major; }; int main() { Student student1; student1.age = 20; student1.major = 1; cout << "student1 has the age " << student1.age << endl; return 0; }

Questions about programming?Chat with your personal AI assistant