#include<conio.h> #include<iostream.h> void main() { union student { char grade; int rollno; float marks; double fees; }s; clrscr(); cout<<"Enter the Garde of the Student : "; cin>>s.grade; cout<<"Grade is :"<<s.grade<<endl; cout<<"Enter the RollNo of the Student : "; cin>>s.rollno; cout<<"Rollno is:"<<s.rollno<<endl; cout<<"Enter the Marks of the Student : "; cin>>s.marks; cout<<"Marks are :"<<s.marks<<endl; cout<<"Enter the Fees of the Student : "; cin>>s.fees; cout<<"Fees paid is: "<<s.fees; getch(); }