Q:

C++ | Create an object of a class and access class attributes

belongs to collection: C++ Classes and Object programs

0

C++ | Create an object of a class and access class attributes

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 an object of a class and access class attributes.

/* C++ program to create an object of a class 
and access class attributes */

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

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

int main()
{
    // object creation
    Student std;

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

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

    return 0;
}

Output

Student's Roll No.: 101
Student's Name: Shivang Yadav
Student's Percentage: 98.2

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 multiple objects of a class... >>
<< C++ program to create a simple class and object...