--%>

Briefly define structures

Briefly define structures?

E

Expert

Verified

Structure is a mixed collection of elements and is referenced by a same name. The structure is declared using a struct keyword. The example that creates the structure to store the employee's information are as follows:
struct emp
{
fixed char addr[50];
 fixed int empID[15];
fixed char desig[15];
 fixed char name[30];
 fixed char dept[15];
 }
The above example defines the structure emp and members of the structure specify the information of the employee.

   Related Questions in DOT NET Programming