Ask a New Question
Search
Questions and answers by
SOURAV (IT'S AWESOME)
Answers (1)
#include #include void main() { int num; int min; int max; int avg; clrscr(); printf("Enter a number (-999 to quit): "); scanf("%d",&num); //putting the first number the user entered in variable min and max min = num; max = num; while(num!=-999) {