c++ object struct code example
Example 1: struct c++
struct product {
int weight;
double price;
} apple, banana, melon;
Example 2: struct c++
//Struct is a compound data type that contains different variables of different types.
struct Student
{
char stuName[30];
int stuRollNo;
int stuAge;
};