it has to be a non-negative int no larger than 23....no blank entries or other entries, if so it reprompts the user again I have
int main(void){
int rows;
while (rows < 1 || rows > 23)
{
printf("Height:");
scanf("%d", &rows);
}
then idk what to do for the other.
is it NULL? orrrr what lol how would I implement that