Custom Lanyards in Ireland
Title
Question
Welcome to Ireland Lanyards, where we provide a wide range of products including name badges, ID cards, badge holders, and wristbands. We make personalized lanyards and customised lanyards. Use our one-of-a-kind lanyards to experiment with different looks. Check out our custom lanyards makers https://www.irelandlanyards.ie/type-of-lanyards and place an order today.
Advanced-Cpp Classes-And-Objects 00-01 min 0-10 sec
Answers:
#include <iostream>
using namespace std;
class Student {
public:
string name;
int age;
void display() {
cout << "Name: " << name << endl;
cout << "Age: " << age << endl;
}
};
int main() {
Student s1;
s1.name = "John";
s1.age = 20;
s1.display();
return 0;
}

Login to add comment