Home
Submit
Free Hosting
Link To Us
Contacts
CPP Structures
CPP
Download
(.zip)
#include <string.h>
struct database
{
int age;
char name[20];
float salary;
};
void main()
{
database employee;
employee.age=22;
strcpy(employee.name, "Joe");
employee.salary=12000.21;
}
CPP
Structures