CalculateLength.c: This function calculates the length of an integer number by dividing
it by 10 iteratively. (Please don’t use the math library to calculate the length)
int CalculateLength(int number)
{
int length = 1;
while ((number/=10)!=0)
length++;
return length;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++