Structure with private members in C++
As we know that by default, structures members are public by nature and they can be accessed anywhere using structure variable name.
Sometimes a question arose "Can a structure has private members?"
The answer is "Yes! In C++, we can declare private members in the structure". So the important thing is that "we can declare a structure just like a class with private and public members".
Example:
In this example, we are declaring a structure named "Student" which has two private data members rNo to store roll number of the student and perc to store a percentage of the student. And, to public member functions read() to read student details (roll number and percentage) of the student and print() to print the student details (roll number and percentage).
Public member functions read() and print() are accessing private data members rNo and perc just like a class. And the public member functions are calling within the main() function using the structure variable named std.
Program:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer