You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Chef has taken his first dose of vaccine D days ago. The prescribed range for taking the dose is between L and R days(both inclusive) from the date of administration of the first dose. Determine if the Chef is too early, too late, or in the correct range for taking his dose.
#include <stdio.h>
int main()
{
int d, l, r;
printf("Enter the number of days before which Chef has taken his first dose:\n");