As I typed that title, it became more and more clear to me that it was confusing.
Ok, I'm writing a C program for school using Xcode. When I build/run it from within Xcode, it won't allow me to enter double digit integers as input and I can't figure out why. If I run the built executable which is stored in the 'products' folder of my project, it opens in its own terminal instance and WILL accept my input correctly. Why is the built in environment not allowing this? (is that what its technically called?)
here is a snip of the code I am talking about:
void getScores()
{
int score1;
int score2;
int score3;
char grade;
printf("\nEnter three test scores 0-100 with a <space> in between then press enter :
");
scanf("%d %d %d", &score1, &score2, &score3);
grade = getGrade(score1, score2, score3);
printResults(grade);
return;
}//getScores