#include<iostream.h>
#include<conio.h>
class student
{
private:
int rn;
float fees;
public:
void readdata();
void writedata();
};
void student :: readdata() //definition outside the class
{
cout<<"Enter the rollno. and fees of the student";
cin>>rn>>fees;
}
void student:: writedata() //definition outside the class
{
cout<<"The rollno. is "<<rn<<endl;
cout<<"The fees is "<<fees<<endl;
}
void main()
{
clrscr();
student st ;
st.readdata();
st.writedata();
getch();
}
Dinesh Thakur holds an B.SC (Computer Science), MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Search Content
Popular Article
Basic Courses
Advance Courses