Hi I'm REALLY new at C and am getting this "constant out of range in comparison error". The line with the error is this:
printf("Would you like you enter additional sets of data? (yes/no)");
scanf("%c", &answer);
while( answer == 'yes'); <------ this line
I haven't done character strings in while loops so I didn't really know what to do.
Help please? :D