Back To C++ Structures
//program to create a structure student and create a reference to variable of structure student #include
#include
struct student { int rollno; int marks; }; void main() { clrscr(); student a; a.rollno=10; a.marks=90; student &b=a; cout<<"\n\n"; cout<