|
Solution to C programming exercise ??
Hi,
I'm a newbie and cant solve this programming exercise!
Given this structure:
typedef struct ContactRecord
{
char name[16];
unsigned char number[20];
}ContactRecord;
static ContactRecord ContactTable[MAX_ENTRIES];
Exercise: Write a C function to write a name and number to any single record of the above ContactTable data structure.
Any ideas/suggestions??
Thanks,
yc
|