From Harvard's CS50 course
basically he has a function
where he says
do {
int n = get_int("Positive number")
}
while ;
He wants the program to repeat positive number until the user inputs a positive number. Why is the while loop on the bottom of his do function?