Question
Guessing Game C /** * This program plays a guessing game with the user. * It selects a random number between 1 and 1000 and
Guessing Game C
/** * This program plays a guessing game with the user. * It selects a random number between 1 and 1000 and * prompts the user to guess the value, informing them * of whether or not it is higher or lower than the * actual value. Once the user guesses correctly, the * game ends and the number of guesses is displayed. */ #include
int main(int argc, char **argv) {
int n = 1000;
//seed the random number generator srand(time(NULL)); int number = (rand() % n) + 1;
int guess = -10; int num_guesses = 0;
printf("Guess-A-Number Game! "); printf("Enter a number between 1 and %d ", n);
//TODO: place your code here
printf("Congratulations, you found it! Number of guesses: %d ", num_guesses); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started