Hi, i have a c programming doubt? I want to know the difference between the two and where one is use
- by aks
Hi, i have a c programming doubt?
I want to know the difference between the two and where one is useful over other?
suppose i have a struct called employee as below:
struct emp{
char first_name[10];
char last_name[10];
char key[10];
};
Now, i want to store the table of employee records, then which method should i use:
struct emp…