Answer to Question #65337 in C++ for Polly Williams

Question #65337
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)
1
Expert's answer
2017-02-17T07:48:44-0500
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS