C++ program using class to generate mark sheet using multiple inheritance
by Ranjith | April 4th, 2010.Using multiple inheritances, prepare a Student Mark sheet, class marks for every student in three subjects. The inherited class generates mark sheet.
#include<iostream.h>
#include<stdio.h>
#include<dos.h>
class student
{
int roll;
char name[25];
char add [25];
char *city;
public: student()
{
cout<<"welcome in the student information system"<<endl;
}
void getdata()
{
cout<<"\n enter the student roll no.";
cin>>roll;
cout<<"\n enter the student name";
cin>>name;
cout<<\n enter ther student address";
cin>>add;
cout<<"\n enter the student city";
cin>>city;
}
void putdata()
{
cout<,"\n the [...]













