Answer:
A Sentinel is a special value that cannot be mistaken as a member of a list of data items and signals that there are no more data items to be processed.
Explanation:
The sentinel value is a form of data (in-band) to identify the end of the data when there is no out-of-bound data provided.
The value should picked in a way that is different and unique from all legal data values.
Answer: it would be the first option
ANSWER FROM EPICTORRACAT
Answer:
3 + 4 hope it helps for you
Explanation:
mark brainest
Answer: For loop
Explanation:
Using the for loop we can get the exact number of values/outcomes we require.
For example: printf(enter 20 numbers");
for(int i=0; i<20;i++)
{
scanf("%d", &number);
}
So, this is an implementation of for loop in C. Using it we can enter exact 20 numbers not less or more than that.
Therefore, for loop is the answer.