Heres a part of my code:
printf("\nEnter amount of adult tickets:");
scanf("%d", &TktAdult);
while (TktAdult<0){
printf("\nPlease enter a positive number!");
printf("\nEnter amount of adult tickets:");
scanf("%d", &TktAdult);
}
Right now it can only stop user from entering a negative value, but how do I add to it so it also stops user from entering a char??