I'm trying to create an array that will hold the first name of 100 users
I tried
char fname[100]
but I realized that only creates an array that hold 100 char.
how do you create an array to hold 100 entries that has a max of 50 chars in each entry?
thanks