okay.. i made a struct that with 3 data types (1) string charName (2) float CharHealth (3) int charExp.
the program is then supposed to read a file with information and place it into the struct array
example of information
Alice 23.4 3210
Xander 45.3 1110
Bernard 12.9 2024
Yanni 23.7 1098
Craw 50.5 980
Zack 11.9 1024
i have been able to only place the names column down but i constantly have problems with the other 2 columns that should have the float data and the other integar data
when i try to print out from column down i get the string data perfectly but the others keep getting errors. have searched around for quiet sometime and i still cant find a solution to this . What am i doing wrong?