Why is in the first fscanf function below, the argument of %s has no & but the argument of %d has &?
fscanf(fileR, "%s%d", meds[count].name, &meds[count].unitsInStock);
==> meds[count].name, &meds[count].unitsInStock
fscanf(fileR, "%i", &meds[count].sixmth[i]);
==> &meds[count].sixmth[i]