Structure in CPP
The structure is a group of the different data type. #include<iostream.h> #include<conio.h> struct student // it will create a new data type. { int rollno; char name[10]; // student is…
The structure is a group of the different data type. #include<iostream.h> #include<conio.h> struct student // it will create a new data type. { int rollno; char name[10]; // student is…
Structure: the structure is a group of different data types. In this program, there is a structure called "student" it contains rollno, name, marks of five subjects. These are different…