Describe how variables can be combined using struct c++ code example
Example: what is a struct in c++
struct Person
{
char name[50];
int age;
float salary;
};
struct Person
{
char name[50];
int age;
float salary;
};