Use the following function for problems:
/*--------------------------------------------- */
/* This function returns 0 or 1. */
/* */
int fives (int n)
{// Declare objects.
int result;
// Compute result to return.
if ((n%5) == 0)
{return 1;
}
else
{return 0;
}
}
/*--------------------------------------------- */
What is the value fives(ceil(sqrt(62.5))) ; (Hint: You don’t need a calculator to determine this value.)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.