Self-Referential Structures
Lets say we want to create a structure to store the data of an employee. The following structure has the members to store some basic data about an employee.
struct employee {
char firstName[20];
char lastName[20];
int age;
double Salary;
};
Addi...
kaustubhk.hashnode.dev2 min read