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

Want to kickstart your project?Use the new AI Studio to create your code