example how to create a struct in c that requires members that are used for possible name, prices, date
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;
};