belongs to collection: C++ Classes and Object programs
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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
In the below program, we are creating a C++ program to create an object of a class and access class attributes.
Output
need an explanation for this answer? contact us directly to get an explanation for this answer