Answer:
The answer to this question can be given as:
Program:
#include <stdio.h> //include header file.
#include <stdlib.h> //include header file.
int main () //main method.
{
int number,choice; //define variable.
number = rand() % 10 + 1; //use random function and take value in number variable
for(int i=1;i<=3;i++) //loop for 3 time input.
{
printf ("\n Enter the Guess number between 1 to 10 :\n"); //message
scanf ("%d",&choice); //input a number
if (number<choice) //check number
{
printf("Number is to lower\n try= %d",i); //message
}
else if (number>choice) //check number
{
printf("Number is to higher\n try= %d",i); //message
}
else if(number==choice ||number!=choice) //check number
{
printf("Congratulations...! \n You guessed correctly!\n"); //message
break;
}
}
printf("\n Number is :%d\n",number); //value
return 0;
}
Output:
Enter the Guess number between 1 to 10 :
5
Number is to lower
try= 1
Enter the Guess number between 1 to 10 :
8
Number is to lower
try= 2
Enter the Guess number between 1 to 10 :
6
Number is to lower
try= 3
Number is: 4
Explanation:
The above C language program can be described as:
- In this program firstly we include header files. Then we define the main function in this function we define a variable that is number and choice. The number variable holds the value of the random number that is taken by the rand function.
- Then we define the loop. This loop is used to provide input validation. This means the user input number only three times. In this loop, we take input by the user in the choice variable.
- Then we use the conditional statement. In this statement, we check the numbers. If the value match in 3 inputs so, it will print the message "Congratulations...! You guessed correctly!". Otherwise, we will print the random function value.