Q:

C++ | Create multiple objects of a class

belongs to collection: C++ Classes and Object programs

0

C++ | Create multiple objects of a class

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In the below program, we are creating a C++ program to create multiple objects of a class.

/* C++ program to create multiple objects of a class */

#include <iostream>
#include <string>
using namespace std;

// class definition
// "student" is a class
class Student {
public: // Access specifier
    int rollNo;
    string stdName;
    float perc;
};

int main()
{
    // multiple object creation
    Student std1, std2;

    // Accessing attributes and setting the values
    std1.rollNo = 101;
    std1.stdName = "Shivang Yadav";
    std1.perc = 98.20f;

    std2.rollNo = 102;
    std2.stdName = "Hrithik Chandra Prasad";
    std2.perc = 99.99f;

    // Printing the values
    cout << "student 1..."
         << "\n";
    cout << "Student's Roll No.: " << std1.rollNo << "\n";
    cout << "Student's Name: " << std1.stdName << "\n";
    cout << "Student's Percentage: " << std1.perc << "\n";

    cout << "student 2..."
         << "\n";
    cout << "Student's Roll No.: " << std2.rollNo << "\n";
    cout << "Student's Name: " << std2.stdName << "\n";
    cout << "Student's Percentage: " << std2.perc << "\n";

    return 0;
}

Output

student 1...
Student's Roll No.: 101 
Student's Name: Shivang Yadav 
Student's Percentage: 98.2
student 2...
Student's Roll No.: 102 
Student's Name: Hrithik Chandra Prasad
Student's Percentage: 99.99

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Classes and Object programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C++ | Create class methods... >>
<< C++ | Create an object of a class and access class...