#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NO 0
#define YES 1
/*
*
*/
int main(int argc, char** argv) {
int guess_value=-1;
int number;
int nbr_of_guesses;
int done=NO;
printf("/n/nGetting a Random number/n");
srand((unsigned)time(NULL));
guess_value=rand();
printf("guess_value is %d/n",guess_value);
printf("Enter a number between 1 and %d/n",RAND_MAX);
while(done==NO){
scanf("%d",&number);
if(number==guess_value){
done=YES;
printf("Congratulations! You guess the"
" right number in %d guesses./n",nbr_of_guesses);
}
else if(number<=guess_value){
printf("You guessed low!/n");
}
else if(number>=guess_value){
printf("You guessed high!/n");
}
}
return (EXIT_SUCCESS);
}