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++;
Comments
Leave a comment