Question 1: How can i get Name filled with the name steve without having to scan or fscan using C?
Question 2: How would I make an array (lets say of size 5) with each element being type PERSON. Once made how would I print out the name in element 3?
Code:
typedef struct
{
char name[40];
} PERSON;
Comment